将鼠标悬停在搜索按钮上?

发布于 2024-11-05 21:46:58 字数 645 浏览 0 评论 0原文

在此页面上,我试图让白色的“搜索”文本在鼠标悬停时变成粉红色 - 但现在,即使鼠标悬停时指针也不会变成手形图标...

但搜索确实有效。

感谢您的任何建议,

塔拉

#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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

最佳男配角 2024-11-12 21:46:58

如果您希望“搜索”输入提交文本在鼠标悬停时变为粉红色(CSS :hover)并显示手形光标,您可以为 #searchsubmit:hover 编写规则> 喜欢:

#searchsubmit:hover{
    color:pink; /*or whatever*/
    cursor:pointer;
}

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:

#searchsubmit:hover{
    color:pink; /*or whatever*/
    cursor:pointer;
}
奢欲 2024-11-12 21:46:58

您可能需要一个冒号而不是句点,因此:

#s:hover {
    /* omitted */
}

You may need a colon instead of a period, so:

#s:hover {
    /* omitted */
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文