博客列表 >iframe网站管理后台+css选择器的使用

iframe网站管理后台+css选择器的使用

PHui
PHui原创
2022年10月20日 16:28:55374浏览
  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>

声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议