将鼠标悬停在搜索按钮上?
在此页面上,我试图让白色的“搜索”文本在鼠标悬停时变成粉红色 - 但现在,即使鼠标悬停时指针也不会变成手形图标...
但搜索确实有效。
感谢您的任何建议,
塔拉
#s {
margin-left:0px;
float: left;
width:200px;
height:13px;
padding: 6px 2px 7px 5px;
background:#f4f4f4;
border:1px 0px 1px 1px #000;
font: normal 100% Helvetica, sans-serif;
color:#333;
}
#s.hover {
margin-left:0px;
float: left;
width:200px;
height:13px;
padding: 6px 2px 7px 5px;
background:#f4f4f4;
border:1px 0px 1px 1px #000;
font: normal 100% Helvetica, sans-serif;
font-color:#ff9999;
color:#333;
}
On this page, I'm trying to get the white 'search' text to turn pink when moused over - but right now, even the pointer isn't transforming into a hand icon on mouse over...
The search does work though.
Thanks for any suggestions,
Tara
#s {
margin-left:0px;
float: left;
width:200px;
height:13px;
padding: 6px 2px 7px 5px;
background:#f4f4f4;
border:1px 0px 1px 1px #000;
font: normal 100% Helvetica, sans-serif;
color:#333;
}
#s.hover {
margin-left:0px;
float: left;
width:200px;
height:13px;
padding: 6px 2px 7px 5px;
background:#f4f4f4;
border:1px 0px 1px 1px #000;
font: normal 100% Helvetica, sans-serif;
font-color:#ff9999;
color:#333;
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您希望“搜索”输入提交文本在鼠标悬停时变为粉红色(CSS
:hover
)并显示手形光标,您可以为#searchsubmit:hover
编写规则> 喜欢:If you want that 'search' input submit text to become pink on mouseover (CSS
:hover
) and to show a hand cursor, you could write a rule for#searchsubmit:hover
like:您可能需要一个冒号而不是句点,因此:
You may need a colon instead of a period, so: