element 위치나 크기를 정하는데에 있어 선행돼서 적용되는 설정
.relative1 {
position: relative;
}
.relative2 {
position: relative;
top: -20px;/* 위로 20px 이동 */
left: 20px;/* 좌측으로부터 20px 이동(멀어짐) */
}
.inline-p {
display: inline-block;
}
.float-left {
float: left;
}
.float-right {
float: right;
}
.block-span {
display: block;
}
/* float, clear 이용 */
.box {
float: left;
width: 200px;
height: 100px;
margin: 1em;
}
.after-box {
clear: left;
}
/* inline-block 이용 */
.box2 {
display: inline-block;
width: 200px;
height: 100px;
margin: 1em;
}
nav {
display: inline-block;
vertical-align: top;
width: 25%;
}
.column {
display: inline-block;
vertical-align: top;
width: 75%;
}
이미지 주위를 텍스트로 감싸기 위해 만들어진 property
left, right, none 중에서 하나를 값으로 줄 수 있습니다
.box {
float: left;
width: 200px;
height: 100px;
margin: 1em;
}
.after-box {
clear: left;/* float 위치와 동일하게 */
}