Blogger Information
Blog 3
fans 0
comment 1
visits 768
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
选择器的应用:利用css选择器制作一个简单下拉菜单
P粉454177820
Original
259 people have browsed it

源代码

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>Document</title>
  8. </head>
  9. <body>
  10. <div class="box">
  11. <label for="cd">主菜单</label>
  12. <input type="checkbox" id="cd" checked>
  13. <ul>
  14. <li>1</li>
  15. <li>2</li>
  16. <li>3</li>
  17. <li>4</li>
  18. <li>5</li>
  19. </ul>
  20. </div>
  21. </body>
  22. </html>
  23. <style>
  24. .box>#cd,#cd+*{display: none;}
  25. .box>#cd:checked+*{display: block;}
  26. </style>

效果图

未选中效果图

选中效果图

Correcting teacher:PHPzPHPz

Correction status:qualified

Teacher's comments:一个作业提交一篇文章就可以了,下次合并在一起
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