超链接悬停时不改变颜色

发布于 2024-10-12 21:21:03 字数 1017 浏览 3 评论 0原文

我试图做到这一点,当用户将鼠标悬停在背景颜色上时会发生变化。问题是,在我完成所有设置后,只有我的标题改变了背景颜色,没有其他。

<tr>
  <td class="near">
    <a href="../index.html"class="near_place">
      <img class="related_photo" />
      <h4 class="nearby"> adfadfad </h4>
      <span class="related_info">asdfadfadfaf</span>
    </a>
    ...

CSS:

a.near_place {
  width: 200px;
  height: 65px;
  border: none;
  background: #fff;
  display: inline;
}

a.near_place:hover {
  background: #DEDEDE;
}

h4.nearby {
  width: 150px;
  margin-top: -2px;
  margin-bottom: 3px;
  font-size: 12px;
  font-weight: normal;
  color: #000;
  display: inline;
}

img.related_photo {
  width: 80px;
  height: 60px;
  border: solid thin #DFDFDF;
  margin-right: 3px;
  float: left;
  overflow: hidden;
}

span.related_info {
  width: 150px;
  height: 54px;
  font-size: 11px;
  color: #666;
  display: block;
}

td.near {
  width: 25%;
  height: auto; 
}

任何帮助表示赞赏

I'm trying to make it so when a user hovers over the background color changes. The problem is that after I set it all up, only my header is changing the background color, nothing else.

<tr>
  <td class="near">
    <a href="../index.html"class="near_place">
      <img class="related_photo" />
      <h4 class="nearby"> adfadfad </h4>
      <span class="related_info">asdfadfadfaf</span>
    </a>
    ...

CSS:

a.near_place {
  width: 200px;
  height: 65px;
  border: none;
  background: #fff;
  display: inline;
}

a.near_place:hover {
  background: #DEDEDE;
}

h4.nearby {
  width: 150px;
  margin-top: -2px;
  margin-bottom: 3px;
  font-size: 12px;
  font-weight: normal;
  color: #000;
  display: inline;
}

img.related_photo {
  width: 80px;
  height: 60px;
  border: solid thin #DFDFDF;
  margin-right: 3px;
  float: left;
  overflow: hidden;
}

span.related_info {
  width: 150px;
  height: 54px;
  font-size: 11px;
  color: #666;
  display: block;
}

td.near {
  width: 25%;
  height: auto; 
}

Any help is appreciated

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(4

兔小萌 2024-10-19 21:21:03

您需要background-color: #DEDEDE;

“-color”很重要

You need background-color: #DEDEDE;

that "-color" is important

最近可好 2024-10-19 21:21:03

在 css 中看不到任何对背景以外的任何内容的引用,因此您想要更改的任何内容都需要用颜色指定

don't see any reference in css to anything other than background so whatever you want to change needs to be specified with a color

通知家属抬走 2024-10-19 21:21:03

更具体的规则可能会有所帮助,例如尝试更改标签内标签的样式:

a.near_place:hover img.related_photo {
}

或者

a.near_place:hover * {
}

More specific rules might help, for instance try changing style for tags inside of your tag:

a.near_place:hover img.related_photo {
}

Or

a.near_place:hover * {
}
不知在何时 2024-10-19 21:21:03

您犯了将 (a) 块元素和 (b) 浮动元素包装在内联元素内的错误。尝试将 元素更改为 display:block;

You're committing the sin of wrapping (a) a block element and (b) a floating element inside an inline element. Trying changing your <a> element to display:block;.

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