반응형
DIV 중앙정렬 하는 방법이다.
<!-- CSS 부분-->
<style>
html, body
{
height: 100%;
}
body
{
display: table;
margin: 0 auto;
}
.container
{
height: 100%;
display: table-cell;
vertical-align: middle;
}
.main
{
height: 200px;
width: 200px;
background-color: blue;
}
</style>
<!-- 본문 부분 -->
<div class="container">
<div class="main"></div>
</div>
반응형
'html&php' 카테고리의 다른 글
익스플로러 낮은 버전 접속시 경고문 (0) | 2017.01.17 |
---|---|
DIV 홈페이지 레이아웃 (0) | 2017.01.06 |
셀렉트 메뉴에 링크 걸기 (0) | 2016.12.13 |
카카오톡 링크 포스팅 (0) | 2016.06.14 |
사이트맵 제작 사이트 (0) | 2016.04.14 |