【发布时间】:2015-01-07 18:19:39
【问题描述】:
css 代码我为每个效果添加了图像..
#button3
{ border:none;
outline:none;
width:262px;
height:66px;
background:url("settings_button1.png");
position:absolute;
margin-left:515px;
}
#button3:hover
{
width:262px;
height:66px;
background:url("settings_button2.png");
}
#button3:focus
{
width:262px;
height:102px;
background:url("settings_button3.png");
}
HTML 代码
<html>
<head>
</head>
<body>
<input type="button" id="button3">
</body>
</html>
它工作正常,但是一旦我点击屏幕上的其他地方,我不希望下拉箭头去..
【问题讨论】: