使用外部样式表操作图像的最佳方法是什么? 没有得到以下代码的回复:
<div id="poster"><img src="squatchposter.jpg" alt="Squatch Poster"></div>
#poster {
background-image:url('squatchposter.jpg');
width: 400px;
height: 500px;
background-position: center;
}
答案 0 :(得分:2)
<img src="squatchposter.jpg" cssclass="poster ">
#poster {
width: 400px;
height: 500px;
background-position: center;
}
答案 1 :(得分:0)
您正在操纵div而不是图像本身。为image标签指定一个id属性,然后在样式表中引用该id。