키워드 | 설명 |
---|---|
block | block레벨 요소로 지정 |
inline | inline레벨 요소로 지정 |
inline-block | inline-block레벨 요소로 지정 |
none | 화면에 표시하지 않음 |
❓ 참조
display : none
인 경우 render tree에 없기 때문에 브라우저에서 보이지 않는다.(render tree는 보이는 부분만)
가능
div:nth-of-type(1) {
background-color: red;
color: white;
padding: 10px;
}
div:nth-of-type(2) {
background-color: blue;
color: white;
width: 300px;
padding: 10px;
}
<div>
<h2>블록 레벨 요소</h2>
<p>width, height 미지정 → width: 100%; height: auto;</p>
</div>
<div>
<h2>블록 레벨 요소</h2>
<p>width: 300px → width: 300px; height: auto;</p>
</div>
불가능
span {
background-color: tomato;
color: white;
padding: 10px;
}
<h1>Hello<strong>World</strong></h1>
<h1>Hello</h1>
<h1>World</h1>
<span>Inline</span>
<span>Inline</span>
<span>Inline</span>
가능
.inline-block {
display: inline-block;
}
.box1 {
background-color: red;
color: white;
width: 100px;
}
.box2 {
background-color: blue;
color: white;
}
<div class="inline-block box1">inline-block width 100px</div>
<div class="inline-block box2">inline-block</div>
❓ 참조
- inline-block 레벨 요소 뒤에 공백(엔터, 스페이스 등)이 있는 경우, 정의하지 않은 space(4px)가 자동 지정
키워드 | 설명 |
---|---|
visible | 요소를 보이게 지정(default) |
hidden | 요소를 안보이게 지정 |
collapse | table 요소에 쓰이며 행이나 열이 보이지 않게 지정 |
❓ 참조
display: none
은 해당 요소의 공간까지 사라지게 하지만visibility: hidden
은 해당 요소의 공간은 사라지지 않고 남아있기 때문에 render tree에 존재
보통의 흐름에서 벗어나게 할 때 사용
키워드 | 설명 |
---|---|
none | 요소를 떠 있게 하지 않게 지정(default) |
left | 요소를 왼쪽으로 지정 |
right | 요소를 오른쪽으로 지정 |
.box {
color: white;
border-radius: 6px;
width: 100px;
height: 100px;
text-align: center;
line-height: 100px;
}
.b1, .b2 {
float: left;
}
.b3, .b4 {
float: right;
}
.b1 {
background: red;
}
.b2 {
background: orange;
}
.b3 {
background: blue;
}
.b4 {
background: purple;
}
<div class="box b1">1</div>
<div class="box b2">2</div>
<div class="box b3">3</div>
<div class="box b4">4</div>
❓ 참조
float: right경우
먼저 기술된 요소가 가장 오른쪽에 출력되므로 출력 순서가 역순
floating 요소
는주변 요소에 영향
을 주기 때문에 다음 요소에clear 속성
을 이용하는 것이 좋다.
clear 속성
은 block-level 요소만 적용 가능