Blogger Information
Blog 24
fans 0
comment 0
visits 10882
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
10.19作业 后台管理 和简单选择器
皮皮志
Original
348 people have browsed it
  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  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. <style>
  9. a{
  10. text-decoration: none;
  11. color:black;
  12. border: 1px solid red;
  13. }
  14. /* 标签选择器 */
  15. h1{
  16. color: blue;
  17. }
  18. /* 属性选择器
  19. class='h2'
  20. id='h2'
  21. */
  22. .h2{
  23. color: yellow;
  24. }
  25. #h2{
  26. color:purple;
  27. }
  28. /* 群组选择器 */
  29. h4,h5,h6{
  30. color:darkred;
  31. }
  32. </style>
  33. </head>
  34. <body>
  35. <h1>后台管理界面</h1>
  36. <nav>
  37. <a href="" target="content">首页</a>
  38. <a href="" target="content">我的收益</a>
  39. <a href="" target="content">广告列表</a>
  40. <a href="" target="content">我的广告位</a>
  41. <a href="" target="content">历史数据</a>
  42. </nav>
  43. <iframe srcdoc="<h1>后台管理界面,请选择导航栏</h1>" name="content" width="100%"></iframe>
  44. <h1>你好,皮皮</h1>
  45. <h2 class="h2">你不好,皮皮</h2>
  46. <h3 id="h2">你好不好,皮皮</h3>
  47. <h4>你好,皮皮</h4>
  48. <h5>你好,皮皮</h5>
  49. <h6>你好,皮皮</h6>
  50. </body>
  51. </html>

代码展示如下

代码展示图

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