[CSS] 2. CSS Display

백하림's avatar
Mar 07, 2025
[CSS] 2. CSS Display
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <style> div { border: 1px solid black; padding: 20px; } .b1 { display: block; height: 200px; } .b2 { display: inline; } .b3 { display: inline-block; height: 200px; width: 200px; } </style> </head> <body> <div class="b1">1</div> <hr> <div class="b2">2</div> <hr> <div class="b3">3</div> </body> </html>
notion image
속성
줄 바꿈 발생 여부
width/height 적용 가능 여부
block
✅ (한 줄 전체 차지)
inline
❌ (옆에 다른 요소 배치 가능)
inline-block
❌ (옆에 다른 요소 배치 가능)
 
Share article

harimmon