我们可以将图像设置为 <div>
的背景图像,如:
<style>
#test {
background-image: url(./images/grad.gif);
background-repeat: no-repeat;
background-position: center center;
width:80%;
margin-left:10%;
height:200px;
background-color:blue;
}
</style>
<div id="test"></div>
我需要设置一个表在中心的 <div>
水平和垂直。是否有使用 CSS
的跨浏览器解决方案?