CSS小技巧1

CSS实现图片垂直和水平居中:
方法一:利用背景图
html {
width: 100%;
height: 100%;
backround: url(logo.png) center center no-repeat;
}
方法二:绝对定位
img {
position:absolute;
top:50%;
left:50%;
width:100px;
height:100px;
margin-top:-50px;
margin-left: -50px
}
方法三:table
td {
vertical-align: middle;
text-align: center
}

猜你喜欢

转载自blog.csdn.net/m0_38102188/article/details/80632536