如何在单行突出显示的行上实现多个图像按钮

发布于 2024-07-21 05:36:55 字数 214 浏览 5 评论 0原文

我正在制作一个用户界面,我希望每条线在滚动时都能响应颜色效果,以给定的颜色为该特定线的整个背景着色。 此外,每行应包含几个小符号(按钮),这些符号也应响应用户的单击和鼠标悬停。

我知道使用锚标记来做到这一点的唯一方法,但是一旦我使用了它,我就无法在其中嵌套另一个锚。 有没有办法生成“嵌套按钮”或解决方法(最好不包括javascript)来实现我的目标?

马拉尔布约

I am making a user interface where I want each line to respond with a color effect when rolled over, coloring the entire background of that particular line in a given color. In addition, each line should contain several small symbols (buttons) that also should respond to user clicks and rollovers.

The only way I know to do this using the anchor tag, but once I have used that, I cannot nest another anchor within it. Is there a way to produce "nested buttons" or a workaround (preferrably not including javascript) to accomplish my goal here?

maralbjo

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

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

发布评论

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

评论(2

成熟稳重的好男人 2024-07-28 05:36:55

您的 CSS 文件可能包含:

li:hover {
   background-color: #3f3; /* whatever color you want */
   list-style: none;
}

您的 HTML 文件可能只有一个项目列表:

<ul>
 <li><a href="alink.html"><img src="image.png" alt="mybutton"></a></li>
 <li>Line</li>
 <li>Goes</li>
 <li>Here</li>
</ul>

Your CSS file could contain:

li:hover {
   background-color: #3f3; /* whatever color you want */
   list-style: none;
}

Your HTML file could then just have a list of items:

<ul>
 <li><a href="alink.html"><img src="image.png" alt="mybutton"></a></li>
 <li>Line</li>
 <li>Goes</li>
 <li>Here</li>
</ul>
π浅易 2024-07-28 05:36:55

如果不编写脚本,则无法使其在旧版 IE 浏览器中运行。 :(

我最终做了 Dmitri Farkov 在他的评论中提出的建议:通过脚本添加悬停行为。不过,我使用了一段时间的一个有趣的替代方案: whatever:hover

也许它更适合您。

You cannot make it work in older IE browsers without scripting. :(

I ended up doing what Dmitri Farkov proposed in his comment: adding hover behavior via script. There is an interesting alternative I used for a while, though: whatever:hover.

Maybe it will suit you better.

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