CSS Display 속성은 요소가 웹 페이지에 표시되는 방식을 설정하는 데 사용됩니다. 일부 값이 여기에 표시됩니다. −
Sr.no | 재산 가치 | 설명 |
---|---|---|
1 | 인라인 | 요소를 인라인 요소로 표시합니다. |
2 | 차단 | 요소를 블록 요소로 표시합니다. |
3 | 내용 | 컨테이너를 사라지게 하여 자식 요소를 DOM에서 다음 레벨 위로 요소의 자식으로 만듭니다. |
4 | 플렉스 | 요소를 블록 수준 플렉스 컨테이너로 표시 |
5 | 그리드 | 요소를 블록 수준 그리드 컨테이너로 표시 |
6 | 인라인 블록 | 요소를 인라인 수준 블록 컨테이너로 표시합니다. |
7 | 인라인 플렉스 | 요소를 인라인 레벨 플렉스 컨테이너로 표시 |
8 | 인라인 그리드 | 요소를 인라인 수준 그리드 컨테이너로 표시 |
9 | 인라인 테이블 | 요소는 인라인 수준 테이블로 표시됩니다. |
예시
이제 CSS 표시 속성을 구현하는 예를 살펴보겠습니다. -
<!DOCTYPE html> <html> <head> <style> span { background-color: orange; color: white; } p.demo { display: none; } span.demo1 { display: inline; } </style> </head> <body> <h1>Match Details</h1> <div> Match will begin at <p class="demo">9AM</p> 10AM on 20th December. </div> <div> Match will end at <span class="demo1">5PM</span> on 20th December. </div> </body> </html>
출력
예시
이제 다른 예를 살펴보겠습니다 -
<!DOCTYPE html> <html> <head> <style> p { background-color: orange; color: white; } p.demo1 { display: block; } p.demo2 { display: inline-block; } </style> </head> <body> <h1>Match Details</h1> <div> Match will begin at <p class="demo1">10AM</p> on 19th Decemenber, 2019. </div> <div> Match will end at <p class="demo2">5PM</p> on 19th Decemenber, 2019. </div> </body> </html>
출력