码迷,mamicode.com
首页 > Web开发 > 详细

css样式设置元素居中的最简便方式 左右居中或垂直居中

时间:2020-03-23 11:15:16      阅读:87      评论:0      收藏:0      [点我收藏+]

标签:type   black   otto   设置   absolute   back   text   margin   meta   

左右居中

.class {
    width: 960px;
    margin: 0 auto;
}

垂直居中方式

父元素需要设置position为非static定位,如果需要左右也居中,加上left: 0;right: 0;即可。

.vMiddle {
    width: 100px;
    height: 100px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
}

样例代码

<html>
	<head>
		<meta charset="utf-8">
		<title></title>
		<style type="text/css">
			.middle {
				position: absolute;
				height: 100px;
				width: 100px;
				top: 0;
				bottom: 0;
				background-color: black;
				margin: auto;
			}
		</style>
	</head>
	<body>
		<div style="position:relative;width:200px;height:600px;background-color: aliceblue;">
			<div class="middle">
			</div>
		</div>
	</body>
</html>

css样式设置元素居中的最简便方式 左右居中或垂直居中

标签:type   black   otto   设置   absolute   back   text   margin   meta   

原文地址:https://www.cnblogs.com/always-chen/p/12550849.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!