我在我的网站上使用了两张图片 - 一张位于右上角,另一张位于中间右侧。
右上角图片css代码
.fbtopbutton{ position: absolute;top: 27px;right: 192px;}
居中右图css代码
#annoying-floater {
z-index:10;
position:fixed;
top:80%; right:-45%;
width:640px; height:480px;
margin-left:-320px; margin-top:-240px;
opacity: 0.8; /* css standard */
filter: alpha(opacity=60); /* internet explorer */
}
#annoying-floater:hover {
opacity: 1.0; /* css standard */
filter: alpha(opacity=60); /* internet explorer */
}
有两个问题:
答案 0 :(得分:0)
在css中以百分比单位设置这些图像的宽度和高度。