Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
出于某种原因,我们必须以这种方式保留标记,我只是试图更改href 悬停时粗体标记的颜色。我可以写一些 jquery 但我认为这可以通过简单的 css 实现。虽然消隐,任何帮助将不胜感激,我尝试了不同的变体,但无法确定!
<a href="http://yolocal.dev:3000/catalog_items/3080191" class="deal_percent_link_style"><b span="deal_data_wrapper">-73% </b></a>
你可以用 CSS 做到这一点:
a.deal_percent_link_style:hover b { color: #f00; }
添加一些CSS:
a.deal_percent_link_style:hover { color: red; }