我想将大小为 1920x225px 的横幅图像放在 960px 宽的 div 中。出现的问题是图像不在中心,因为它从左上角开始。这是描述问题的图像 http://tinypic.com/r/scco0m/5
问问题
108 次
2 回答
1
尝试使用
background-position: center center;
在您的背景图像上。
https://developer.mozilla.org/en-US/docs/Web/CSS/background-position
于 2013-10-17T09:24:14.703 回答
0
你没有在这里提到,你如何在网站中添加他的图像
如果您要提供背景图片
像这样给cssbackground:url(../image.jpg) center center no-repeat;
如果您不想要背景图片,只需max-width:100%
为该图片提供
新答案。
您需要为position:relative
具有宽度的 div:960px
并为图像添加这样
img{position:absolute; left:50px; top:20px; z-index:999}
您可以根据您的愿望更改左值和上值
于 2013-10-17T09:27:10.540 回答