为什么注册按钮,怎么改都不能显示注册的图片,总是显示登录的那张图片
定位不对
如修改以下css,则第二个按钮显示【立即注册】
#wrap2 .bt2{
width:190px;
height:38px;
background-position:0 39px;
margin-top:10px;
margin-bottom:10px;
}缺少单位
#wrap2 .bt2{
width:190px;
height:38px;
background-position:0 -39px;
margin-top:10px;
margin-bottom:10px;