如何在悬停时制作圆角?
我正在为 wordpress 制作一个主题。我的导航栏有圆角,就像苹果的网站一样。我想为其添加悬停样式,但我无法让它以圆角悬停,就像苹果的导航栏那样。我使用大图像作为背景并使用 WordPress 3 的菜单系统。那么,如何将第一个和最后一个项目悬停在栏上?谢谢你的帮助。
I'm making a theme for wordpress. My navigation bar has rounded corners like apple's site. I want to add a hover style to it, but I can't get it to hover with rounded corners, like apple's nav bar does. I'm using a big image for the background and using wordpress 3's menu system. So, how can I hover the first and last item on the bar? Thanks for helping.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 javascript,您可以选择和更改您想要的任何内容,但如果您只想使用 css,则必须将
:hover
应用于所有按钮子元素的父元素,以便您可以选择所有使用 css 的子元素。但是,这不包括旧版本的 IE,因为它们不支持a
标记之外的元素上的:hover
。例子:
With javascript you can select and change whatever you want but if you just want to use css, you´ll have to apply the
:hover
to the parent of all button sub-elements so that you can select all sub-elements using css. However, that excludes older versions of IE as they don´t support:hover
on elements other thana
tags.Example:
您必须为“悬停”样式设置不同的背景图像。
You'll have to have a different background image for the "hover" style.