⌾ 365bet国际娱乐网址
1、行内元素水平居中,可以在父元素中使用text-align:center;垂直居中可以用,line-height:100px;例如:
代码语言:javascript复制
div{
width:300px;
height:100px;
text-align:center;
line-height:100px;
}
代码语言:javascript复制
div{
width:300px;
height:100px;
margin:0px auto;//上下边距为0,水平居中
background:#ccc;
}
代码语言:javascript复制
div{
width:300px;
height:100px;
position:relative;
}
div p{
width:100px;
height:20px;
position:absolute;
margin:auto;
top:0;
bottom:0;
left:0;
right:0;
}
代码语言:javascript复制
div{
width:300px;
height:100px;
position:relative;
background:#bbb;
}
div p{
width:100px;
height:20px;
position:absolute;
top:50%;
margin-top:-10px;
left:50%;
margin-left:-50px;
}