Blogger Information
Blog 6
fans 0
comment 0
visits 3811
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
补作业——0704作业
18年了要发呀
Original
534 people have browsed it

html代码

  1. <div class="box1">
  2. <ul>
  3. <li>这是一条公司动态1</li>
  4. <li>这是一条公司动态2</li>
  5. <li>这是一条公司动态3</li>
  6. <li>这是一条公司动态4</li>
  7. <li>这是一条公司动态5</li>
  8. </ul>
  9. </div>
  10. <div class="box2">
  11. <ul>
  12. <li class="no1">这是一条行业新闻1</li>
  13. <li>这是一条行业新闻2</li>
  14. <li>这是一条行业新闻3</li>
  15. <li>这是一条行业新闻4</li>
  16. <span>这是一个P标签来倒单的</span>
  17. <li>这是一条行业新闻5</li>
  18. </ul>
  19. </div>

css代码

  1. /*群组选择器*/
  2. .box1,.box2{
  3. margin-left: 20px;
  4. margin-bottom: 30px;
  5. margin-top:20px;
  6. width: 250px;
  7. }
  8. /*子元素选择器*/
  9. ul>li{
  10. list-style: none;
  11. }
  12. /*子元素选择器奇偶选择*/
  13. .box1 ul>:nth-child(2n){
  14. background: #ffe03b;
  15. }
  16. /*控制ul的子元素li标签的倒数第三个*/
  17. /*如果不写li就是控制ul的子元素倒数第三个,等同于nth-last-child()*/
  18. .box2 ul>li:nth-last-of-type(3){
  19. background: #ffaf07;
  20. }
  21. /*具体的子元素演示*/
  22. .box2 ul>:nth-child(1){
  23. background: #5283ff;
  24. }
  25. /*兄弟元素*/
  26. .no1+li{
  27. background: #1bff06;
  28. }
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post