글
가운데 정렬, 중앙 이미지 고정, absolute 이용한 중앙 정렬, body 요소 가운데
C/CSS
2014. 3. 18. 16:14
가운데 정렬
1.
<style>
body {}
.center { background : url(4.png) no-repeat;
width : 700px;
height : 700px;
margin : 0 auto;
}
</style>
2.
<div style="width : 100%; text-align : center;">
<div style="width : 860px; height : 700px; margin : auto;"></div>
< /div>
---------------------------------------------------------------------
중앙 이미지 고정
background : url(*.jpg) no-repeat fixed center center;
---------------------------------------------------------------------
absolute 이용한 중앙 정렬
#gotop {
position : absolute;
left : 50%;
top : 50%;
margin-left : 410px;
background : #ddd;
width : 100px;
height : 1000px;
}
---------------------------------------------------------------------
body 요소 가운데
body {
margin : 0 auto;
width : 930px;
position : relative;
}
'C > CSS' 카테고리의 다른 글
CSS zoom 오브젝트를 확대 시켜 주는 속성 (0) | 2014.03.19 |
---|---|
CSS로 심플라인 테이블 (0) | 2014.03.18 |
div에서 vertical-align : middle 적용하기 (0) | 2014.03.18 |
Table 태그 CSS (0) | 2014.03.18 |
while-space, workd-break, word-wrap, text-overflow (0) | 2014.03.18 |