Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- java
- 모두가 기다리는 사람
- ESG
- 수부타이
- node
- 월칙
- kubernetes
- 히든 스토리
- 부자의그릇
- HTML
- apache kafka
- 칭기즈칸의 위대한 장군 수부타이
- 과제의 분리
- docker
- 레퍼런스 복사
- sentry
- 뉴 컨피던스
- 아웃풋법칙
- 비메모리 자원
- try-with-resources
- 쿠버네티스
- 이펙티브 자바
- 참조 계수
- Container
- try width resources
- colllection
- 도파민형 인간
- 공헌감
- CSS
- Infresh
Archives
- Today
- Total
Hi
(css) float 본문
왼쪽이나 오른쪽으로 배치하기
웹 요소를 문서 위에 떠 있게 만듬.
-> 왼쪽 구석이나 오른쪽 구석에 요소가 배치
float: left | right | none
속성 값 |
설명 |
left |
해당 요소를 문서의 왼쪽으로 배치 |
right |
해당 요소를 문서의 오른쪽으로 배치 |
none |
좌우 어느쪽으로 배치하지 않음 |
<style>
.box1{
padding:20px;
margin-right:10px;
background:#ffd800;
float:left;
}
.box2 {
background: #0094ff;
padding:20px;
margin-right:10px;
float:left;
}
.box3 {
background: #00ff21;
padding:20px;
float:left;
}
.box4 {
background:#ffffff;
padding:20px;
float:right;
border:1px solid black;
}
</style><div class="box1">박스1</div>
<div class="box2">박스2</div>
<div class="box3">박스3</div>
<div class="box4">박스4</div>
출처 : Doit! html5 + css3 웹표준의 정석
'WEB(웹)' 카테고리의 다른 글
(css) position (0) | 2018.05.27 |
---|---|
(css) clear (0) | 2018.05.27 |
(css) box-sizing (0) | 2018.05.27 |
(css) padding (0) | 2018.05.27 |
(css) margin (0) | 2018.05.27 |