您的位置:首页 > 其它

让div垂直水平居中的方法

2015-04-07 22:05 344 查看
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>无标题文档</title>
<style>
.myt {
/* background:red url(images/img2.jpg) center center/500px 200px no-repeat;*/
background:red url(images/img2.jpg) center center/500px 200px no-repeat;
width:500px;
height:200px;
margin:0 auto;
position:absolute;
margin-left:-250px;
margin-top:-100px;
top:50%;
left:50%;
}
</style>
</head>
<body>
<div class="myt"></div>
</body>
</html>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: