您的位置:首页 > 其它

图片上下左右居中

2015-11-11 09:59 351 查看
<style>
body{
margin: 0;
padding: 0;
}
/*方法一*/
.box{
position: relative;
width: 300px;
height: 300px;
border: 1px solid red;
}
.box img{
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: auto;
}

/*方法二*/
.box {
display: table-cell;
vertical-align:middle;
text-align:center;
width:200px;
height:200px;
border: 1px solid red;
}
.box img{
vertical-align: middle;
}

/*方法三*/
.box{
width: 300px;
height: 300px;
border: 1px solid red;
position: relative;
}

.box img{
width: 100px;
height: 100px;
background-color: black;
position: absolute;
left: 50%;
top: 50%;
margin-top: -50px;
margin-left: -50px;
}
</style>

<body>
<div  class="box">
<img src="images/public/logo_s.png">
</div>
</body>


参考:/article/5062183.html
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: