我有两个div,一个在另一个内部,内部div有一个p标签,中间对齐。标记是
<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垂直居中,而horizontall则在外部div(box1)内部。我没有将内部div(box2)置于外部div的中心。请帮我做。我为此创造了一个小提琴 - &gt; http://jsfiddle.net/64WAW/1/
答案 0 :(得分: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;
}
答案 1 :(得分: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
。
查看fiddle
答案 2 :(得分: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;
}
答案 3 :(得分:0)
使用display:inline-block并添加:after for it parent container:
.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;
}