Valid <display-outside>
values:
block
The element generates a block element box, generating line breaks both before and after the element when in the normal flow.
inline
The element generates one or more inline element boxes that do not generate line breaks before or after themselves. In normal flow, the next element will be on the same line if there is space.
Note: When browsers encounter a display property with only an outer display
value (e.g., display: block
or display: inline
), the inner value defaults to flow
(e.g., display: block flow
and display: inline flow
). This is backwards-compatible with single-keyword syntax.
<display-outside> =Examples
block |
inline |
run-in
In the following example, span elements (normally displayed as inline elements) are set to display: block
and so break onto new lines and expand to fill their container in the inline dimension.
<span>span 1</span> <span>span 2</span>
CSS
span {
display: block;
border: 1px solid rebeccapurple;
}
Result Specifications Browser compatibility css.properties.display.block
Loadingâ¦
css.properties.display.inlineLoadingâ¦
See alsoRetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.5