display 속성 값 블록을 사용하면 요소가 새 줄에서 시작됩니다. 그것으로 전체 너비가 걸립니다. 따라서 요소는 블록 요소로 표시됩니다.
예시
이제 CSS에서 디스플레이 블록을 구현하는 예를 살펴보겠습니다 -
<!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> <hr /> <div> Match will end at <p class="demo2">5PM</p> on 19th Decemenber, 2019. </div> </body> </html>
출력
이제 다른 예를 살펴보겠습니다 -
<!DOCTYPE html> <html> <head> <style> p { background-color: orange; color: white; } p.demo { display: block; } </style> </head> <body> <h1>Student Result</h1> <div> The result of MCA student will be declared on <p class="demo">20th Decemeber 2019</p>Check the website on the same day at 8PM. </div> </body> </html>
출력