Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 10 additions & 3 deletions css-page-floats/Overview.bs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@ Terminology</h2>
<dt><dfn>Float anchor</dfn>
<dd>
The float anchor is the point in the flow where the float had appeared had
it not been a float.
it not been a float and instead had been an empty inline element with no
margins, borders or padding.
<dt><dfn>Float containing block formatting context</dfn>
<dd>
The block formatting context inside of which the float is embedded.
Expand Down Expand Up @@ -334,13 +335,19 @@ And some more text&lt;/p>
<dt><dfn>left</dfn>

<dd>
Behave like block-end, inline-start or inline-end depending on the float
If the <a>float reference</a> is a line box, behaves like inline-start or
inline-end, whichever corresponds to line-left for the float reference.

Otherwise, behaves like block-end, inline-start or inline-end depending on the float
containing block’s 'direction' and 'writing-mode'.

<dt><dfn>right</dfn>

<dd>
Behave like block-start, inline-start or inline-end depending on the float
If the <a>float reference</a> is a line box, behaves like inline-start or
inline-end, whichever corresponds to line-right for the float reference.

Otherwise, behaves like block-start, inline-start or inline-end depending on the float
containing block’s 'direction' and 'writing-mode'.

<dt><dfn>top</dfn>
Expand Down