将图像圆角应用于
  • 发布于 2024-07-09 13:34:18 字数 170 浏览 5 评论 0原文

    我使用 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 技术交流群。

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

    发布评论

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

    评论(2

    罪#恶を代价 2024-07-16 13:34:18

    我见过最常用的构造是链接内的跨度。

    所以类似:

    <li><a><span>Your text here</span></a></li>    
    

    然后您可以使用链接的悬停状态来定位跨度和链接:

    a:hover{some rules here}  
    a:hover span{some more rules here} 
    

    这保持了某种语义,并且不会向页面添加太多垃圾。

    The construct that I have seen used most for that is a span inside a link.

    so something like:

    <li><a><span>Your text here</span></a></li>    
    

    you can then target the span and the link using the hover state of the link:

    a:hover{some rules here}  
    a:hover span{some more rules here} 
    

    that keeps it kinda semantic, and doesn't add to much junk to the page.

    记忆消瘦 2024-07-16 13:34:18

    您可以将 Div 放入您的 li 中,如下所示:

    <li>
      <div class="lefcorner"></div>
      <div class='liContent'>Foo</div>
      <div class='rightcorner'></div>
    </li>
    

    这样您既可以保留语义,又可以获得样式 DIV 的跨浏览器支持。

    You could put Divs inside your li's like so:

    <li>
      <div class="lefcorner"></div>
      <div class='liContent'>Foo</div>
      <div class='rightcorner'></div>
    </li>
    

    That way you will both keep your semantics and will also have the cross-browser support of styling DIVs.

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