| Index: sky/specs/style.md
|
| diff --git a/sky/specs/style.md b/sky/specs/style.md
|
| index 0db40badedb3a56a2b3127307ca0787ac554c3c7..cc1d0ad789d171362cbec7d1ea7f2481f2ba5b67 100644
|
| --- a/sky/specs/style.md
|
| +++ b/sky/specs/style.md
|
| @@ -534,28 +534,28 @@ StyleDeclaration objects as follows:
|
| * ``content``
|
| * ``title``
|
| These all add to themselves the same declaration with value:
|
| - ``{ display: { value: null } }``
|
| + ```{ display: { value: null } }```
|
|
|
| * ``img``
|
| This adds to itself the declaration with value:
|
| - ``{ display: { value: sky.ImageElementLayoutManager } }``
|
| + ```{ display: { value: sky.ImageElementLayoutManager } }```
|
|
|
| * ``span``
|
| * ``a``
|
| These all add to themselves the same declaration with value:
|
| - ``{ display: { value: sky.InlineLayoutManager } }``
|
| + ```{ display: { value: sky.InlineLayoutManager } }```
|
|
|
| * ``iframe``
|
| This adds to itself the declaration with value:
|
| - ``{ display: { value: sky.IFrameElementLayoutManager } }``
|
| + ```{ display: { value: sky.IFrameElementLayoutManager } }```
|
|
|
| * ``t``
|
| This adds to itself the declaration with value:
|
| - ``{ display: { value: sky.ParagraphLayoutManager } }``
|
| + ```{ display: { value: sky.ParagraphLayoutManager } }```
|
|
|
| * ``error``
|
| This adds to itself the declaration with value:
|
| - ``{ display: { value: sky.ErrorLayoutManager } }``
|
| + ```{ display: { value: sky.ErrorLayoutManager } }```
|
|
|
| The ``div`` element doesn't have any default styles.
|
|
|
|
|