您的位置:首页 > Web前端 > CSS

css 设计模式 absolute 居中对齐

2015-04-06 08:23 267 查看
<style>
.container{
position: relative;
border: 1px solid #000011;
top: 100px;
height: 500px;
width: 500px;
}
#cm{
position: absolute;
border: 1px solid red;
margin: auto auto;
}
.hc{
width: 200px;
left: 0;
right: 0;
}
.vc{
height: 40px;
top: 0;
bottom: 0;
}
</style>
</head>
<body>

<div class="container">
<p id="cm" class="hc vc"></p>
</div>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  css 样式