我们可以将图像设置为<div>
like的背景图像:
<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
?