Blogger Information
Blog 3
fans 0
comment 0
visits 1494
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
简单后台+简单CSS
A瞌睡虫
Original
594 people have browsed it

Css选择器权重

  • 1.行内样式
  • 2.ID选择器
  • 3.类选择器
  • 4.标签选择器

    简单后台代码

  • 代码部分
    1. <title>后台管理系统</title>
    2. </head>
    3. <body>
    4. <header>
    5. <div class="top">
    6. <img class="jh" src="./images/jh.jpg" alt="">
    7. <p class="top_text">火星警局管理后台</p>
    8. </div>
    9. </header>
    10. <aside>
    11. <div class="memu_1">
    12. <a class="memu" href="https://www.baidu.com" target="content">百度菜单</a><br />
    13. <a class="memu" href="https://www.php.cn" target="content">php菜单</a><br />
    14. <a class="memu" href="https://www.163.com" target="content">网易菜单</a><br />
    15. <a class="memu" href="https://www.qq.com" target="content">腾讯菜单</a><br />
    16. <a class="memu" href="https://www.weixn.com" target="content">微信菜单</a><br />
    17. </div>
    18. </aside>
    19. <main>
    20. <div class="box">
    21. <iframe class="main" srcdoc="欢迎使用火星管理系统" name="content"></iframe>
    22. </div>
    23. </main>
    24. <footer>本程序由火星公司开发</footer>
    25. <style>
    26. *{
    27. margin: 0;
    28. padding: 0;
    29. }
    30. .jh{
    31. width: 30px;
    32. float: left;
    33. padding-top: 10px;
    34. }
    35. .top_text{
    36. line-height: 40px;
    37. color: crimson;
    38. font-size: 20px;
    39. text-indent: 1em;
    40. }
    41. header{
    42. background-color: blue;
    43. width: 100%;
    44. height: 50px;
    45. }
    46. .top{
    47. padding-left: 80px;
    48. }
    49. .memu_1{
    50. width: 100px;
    51. text-align: center;
    52. }
    53. .memu{
    54. text-decoration: none;
    55. color: cadetblue;
    56. line-height: 30px;
    57. border: 1px solid;
    58. }
    59. aside{
    60. background-color: #ccc;
    61. width: 7%;
    62. height:800px;
    63. float: left;
    64. }
    65. .main{
    66. width: 92%;
    67. height: 797px;
    68. }
    69. footer{
    70. background-color: cadetblue;
    71. height: 80px;
    72. text-align: center;
    73. line-height: 80px;
    74. }
    75. </style>
  • 代码运行结果

Correcting teacher:天蓬老师天蓬老师

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