CSS에서 요소의 화면 가운데 맞춤 문제

745 단어 CSS
1. 고정폭 원소는 화면 창의 수평에서 수직으로 가운데
.box{
    width:150px;
    height:200px;
    position: fixed;
    top:50%;
    left:50%;
    margin-left:-75px;
    margin-top:-100px;
    background:red;
}

2. 부정확한 폭의 요소는 화면 창의 수평에서 수직으로 가운데
.box{
    position: fixed; 
    top:0;
    right:0;
    bottom:0; 
    left:0;
    margin:auto;
    background:red;
}

3. 부정확한 너비와 높이의 하위 원소는 부모 원소에서 수평과 수직이 모두 중간이다
   :
   {
    position:relative;
}
   {
    position: absolute; 
    top:0;
    right:0;
    bottom:0; 
    left:0;
    margin:auto;
}

   :
   {
    display:table-cell;
    text-align:center;
    vertical-align:middle;
}

좋은 웹페이지 즐겨찾기