이제 CSS 표시의 두 가지 값 구문으로 요소의 표시 유형을 명시적으로 설정할 수 있습니다. 이를 통해 요소의 흐름 레이아웃을 변경할 수 있습니다.
구문
CSS 표시 속성의 구문은 다음과 같습니다. -
Selector { display: /*inside*/ /*outside*/ }
예시
다음 예는 CSS 표시 속성을 보여줍니다.
<!DOCTYPE html> <html> <head> <style> body,div,span { box-shadow: inset 0 0 12px lightgreen; border: 2px dotted gray; } span { padding: 2%; display: inline flow-root; } </style> </head> <body> <div> <p> Aliquam non metus diam. Suspendisse ac euismod eros, quis feugiat lacus. </p> <img src="https://images.unsplash.com/photo-1611625618313-68b87aaa0626?crop=entropy&cs=tinysrgb&fit=crop&fm=jpg&h=128&ixlib=rb-1.2.1&q=80&w=128" /> <span>Inline Block</span> <span>Span</span> Quisque sit amet consequat sem. Morbi eleifend erat et orci faucibus lacinia. </div> </body> </html>
이것은 Firefox에서 다음과 같은 출력을 제공합니다.
예시
<!DOCTYPE html> <html> <head> <style> body,div,span { margin: 2%; box-shadow: inset 0 0 12px orange; border: 2px ridge cadetblue; } span { padding: 2%; display: block flow; } </style> </head> <body> <div> <p> Aliquam non metus diam. Suspendisse ac euismod eros, quis feugiat lacus. </p> <span>Block is now</span> <span>Block Flow</span> Quisque sit amet consequat sem. Morbi eleifend erat et orci faucibus lacinia. </div> </body> </html>
이것은 다음과 같은 출력을 제공합니다.