博客列表 >简单后台+简单CSS

简单后台+简单CSS

A瞌睡虫
A瞌睡虫原创
2020年12月15日 13:27:39595浏览

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>
  • 代码运行结果

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