Blogger Information
Blog 25
fans 0
comment 0
visits 10563
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
iframe网站管理后台+css选择器的使用
PHui
Original
375 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. </head>
  9. <body>
  10. <header style="display: flex; place-items: center">
  11. <h1 style="margin-right: auto">后台管理<small>v1.0</small></h1>
  12. <section style="margin-left: auto">
  13. <em>admin</em>
  14. <button onclick="location.href='logout.php'">退出</button>
  15. </section>
  16. </header>
  17. <nav>
  18. <a href="demo.html" target="content">课程表</a>
  19. <a href="demo1.html" target="content">注册表单</a>
  20. <a href="demo3.html" target="content">视频与音频</a>
  21. <a href="demo4.html" target="content">导航</a>
  22. </nav>
  23. <iframe
  24. src="default.html"
  25. name="content"
  26. width="800px"
  27. height="500px"
  28. ></iframe>
  29. <div>
  30. <!-- ? 1. 标签选择器 <h2> -->
  31. <h2>Hello world</h2>
  32. <style>
  33. h2 {
  34. color: #099;
  35. }
  36. </style>
  37. <!-- ? 2. 属性选择器 title -->
  38. <h2 title="php.cn老师">Hello, 朱老师</h2>
  39. <style>
  40. h2[title] {
  41. color: #019;
  42. }
  43. </style>
  44. <!-- ? id,class: 是属性,但是它也是高频属性,css为它设计了语法糖 -->
  45. <h2 id="active">Hello, php中文网</h2>
  46. <h2 class="hello">Hello, php.cn</h2>
  47. <style>
  48. h2#active {
  49. color: #030;
  50. }
  51. h2.hello {
  52. color: brown;
  53. }
  54. </style>
  55. <!-- ? 群组选择器, 多个选择器之间用逗号分开 -->
  56. <h5>合肥</h5>
  57. <h3>南京</h3>
  58. <h4>杭州</h4>
  59. <style>
  60. h5,
  61. h3,
  62. h4 {
  63. color: #070;
  64. }
  65. </style>
  66. </div>
  67. </body>
  68. </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