0

我有两个 div,一个在另一个里面,内部 div 有一个中间对齐的 ap 标签。标记是

<div class="box1">
    <div class="box2">
        <p>hello</p>
    </div>
</div>

样式规则是

.box1 {
    width: 400px;
    height: 400px;  
    background: red;
    text-align: center;
}
.box2 {
    display: table-cell;
    width: 200px;
    height: 200px; 
    margin: auto;
    vertical-align: middle; 
    text-align: center;   
    background: yellow;
}

我想要做的是将 p 标签垂直和水平居中在内部 div(box2)内,并将内部 div 垂直和水平居中在外部 div(box1)中。我未能将内部 div(box2) 居中在外部 div 内。请帮我做。我为此创建了一个小提琴-> http://jsfiddle.net/64WAW/1/

4

4 回答 4

2

请看这个:

http://jsfiddle.net/itz2k13/64WAW/2/

.box1 {
 display: table-cell;
 width: 400px;
 height: 400px;  
 background: red;
 text-align: center;
 vertical-align: middle;
}

.box2 {    
 width: 200px;
 height: 200px; 
 background: yellow;
 margin: auto;
 line-height: 200px;
}
于 2013-06-08T09:01:31.580 回答
1

HTML:

<div class="box1">
    <div class="box2container">
        <div class="box2">
            <p>hello</p>
        </div>
    </div>
</div>

CSS:

.box1 {
    width: 400px;
    height: 400px;  
    background: red;
    text-align: center;
}
.box2 {
    position:relative;
    top:-50%;
    left:-50%;
    width: 200px;
    height: 200px; 
    background: yellow;
    line-height:200px;
}

.box2container{
    width: 200px;
    height: 200px; 
    position:relative;
    top:50%;
    left:50%;
}

此解决方案避免使用display:table-cell旧浏览器不支持的。看看小提琴

于 2013-06-08T09:10:17.587 回答
1

你将使用 flexbox,这很简单。它是这样的:

.box1,
.box2{
  display: -moz-box; /*Safari,  iOS, Android browser, older WebKit browsers. */
  display: -webkit-box;/* Firefox (buggy) */
  display: -ms-flexbox; /*IE 10*/
  display: -webkit-flex;/*Chrome 21+ */
  display: flex;/*Opera 12.1, Firefox 22+ */

  -webkit-box-align: center; 
  -moz-box-align: center;
  -ms-flex-align: center; 
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center; 
  -moz-box-pack: center; 
  -ms-flex-pack: center; 
  -webkit-justify-content: center;
  justify-content: center;
}
.box1{
    width: 400px;
    height: 400px;  
    background: red;
    text-align: center;     
}
.box2 {
    background: yellow;
    width: 200px;
    height: 200px;
}

请看demo,详细请看教程

于 2013-06-08T09:11:47.597 回答
0

使用 display:inline-block 并为它的父容器添加 :after :

.box1 {
    width: 400px;
    height: 400px;  
    background: red;
    text-align: center;
}
.box2 {
    display: inline-block;
    width: 200px;
    height: 200px; 
    vertical-align: middle; 
    text-align: center;   
    background: yellow;
}
.box1:after {
  content:"";
  width: 1px;
  height: 100%;
  position: relative;
  display: inline-block;
  vertical-align: middle; 
}

演示_

于 2013-06-08T10:04:13.343 回答