A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://developer.mozilla.org/en-US/docs/Web/CSS/display-outside below:

<display-outside> - CSS | MDN

Syntax

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.

Formal syntax
<display-outside> = 
block |
inline |
run-in
Examples

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.

HTML
<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.inline

Loading…

See also

RetroSearch 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