将图像圆角应用于
我使用 jQuery 插件为我的
创建圆角,但它不适用于很多浏览器,并且不支持鼠标悬停。我想知道使用
使用两个图像(左角和右角)作为左侧和右侧的最佳方法是什么。I was using jQuery plugins to create a rounded corner for my <li>
, but it was not working on a lot of browsers and didn't support mouse over.
I am wondering what is the best way to use two images (left corner and right corner) as the left and right side with using <li>
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我见过最常用的构造是链接内的跨度。
所以类似:
然后您可以使用链接的悬停状态来定位跨度和链接:
这保持了某种语义,并且不会向页面添加太多垃圾。
The construct that I have seen used most for that is a span inside a link.
so something like:
you can then target the span and the link using the hover state of the link:
that keeps it kinda semantic, and doesn't add to much junk to the page.
您可以将 Div 放入您的 li 中,如下所示:
这样您既可以保留语义,又可以获得样式 DIV 的跨浏览器支持。
You could put Divs inside your li's like so:
That way you will both keep your semantics and will also have the cross-browser support of styling DIVs.