在wordpress导航中,以第一个和最后一个li标签样式为目标

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在wordpress导航中,以第一个和最后一个li标签样式为目标相关的知识,希望对你有一定的参考价值。

Use javascript to add a class of last onto the first and the last li tags in the navigation (add to global.js). Then use css to style. For instance, if the first li is home, you can set the css to hide this link (if you want the logo to act as your home link instead). You may have a background pattern that you want to turn off on your last li tag, you can set the css background to none in this case.
  1. // Add to global.js:
  2.  
  3. // Add class of last to the last li tag (in the top navigation)
  4. $('#header li:last').addClass('last');
  5. // Add class of first to the first li tag (in the top navigation)
  6. $('#header li:first').addClass('first');
  7.  
  8.  
  9. // Add to CSS:
  10.  
  11. #header li.first
  12. {
  13. display: none;
  14. }
  15.  
  16. #header li.last
  17. {
  18. background: none;
  19. padding-right: 0;
  20. }

以上是关于在wordpress导航中,以第一个和最后一个li标签样式为目标的主要内容,如果未能解决你的问题,请参考以下文章

Wordpress:将自定义 ID 添加到 wp_nav_menu 中的最终 li

php或者JS或者CSS怎么删除ul中最后一个li的border-bottom

Wordpress分类导航

将自定义类添加到 WordPress 导航中的锚标记

Wordpress-分类导航的最后一节课

将最后一个 li 扩展到 ul 的剩余宽度并右对齐