博主信息
博文 10
粉丝 0
评论 0
访问量 8037
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
简单的后台框架
土老帽
原创
763人浏览过

简单的后台框架

效果图

html代码

  1. <!DOCTYPE html>
  2. <html lang="en">
  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>简单后台框架</title>
  8. <style>
  9. body {
  10. height: 100vh;
  11. width: 100vw;
  12. display: grid;
  13. grid-template-columns: 10em 1fr;
  14. grid-template-rows: 6em 1fr;
  15. margin: 0;
  16. }
  17. body .header {
  18. grid-column-end: span 2;
  19. border-bottom: 1px solid currentColor;
  20. background-color: #008ead;
  21. padding: 2em;
  22. display: flex;
  23. align-items: center;
  24. color: #fff;
  25. }
  26. body .header div {
  27. margin-left: auto;
  28. }
  29. body .nav {
  30. background-color: #efc;
  31. margin: 0;
  32. padding-top: 1em;
  33. list-style: none;
  34. }
  35. body iframe {
  36. width: calc(100vw - 10em);
  37. height: calc(100vh - 6em);
  38. border-left: 1px solid currentColor;
  39. }
  40. </style>
  41. </head>
  42. <body>
  43. <!-- 顶部 -->
  44. <div class="header">
  45. <h2>管理后台</h2>
  46. <div>用户名:admin</div>
  47. <a href="">退出</a>
  48. </div>
  49. <!-- 左侧导航 -->
  50. <!-- li*5>a[href="demo$.html" target="content"]{菜单项$} -->
  51. <ul class="nav">
  52. <li><a href="demo1.html" target="content">菜单项1</a></li>
  53. <li><a href="demo2.html" target="content">菜单项2</a></li>
  54. <li><a href="demo4.html" target="content">菜单项3</a></li>
  55. <li><a href="demo5.html" target="content">菜单项4</a></li>
  56. <li><a href="demo6.html" target="content">菜单项5</a></li>
  57. </ul>
  58. <!-- 右侧内容 -->
  59. <iframe srcdoc="<h2 style='color:red'>欢迎光临...</h2>" frameborder="1" name="content"></iframe>
  60. </body>
  61. </html>
批改老师:PHPzPHPz

批改状态:合格

老师批语:
本博文版权归博主所有,转载请注明地址!如有侵权、违法,请联系admin@php.cn举报处理!
全部评论 文明上网理性发言,请遵守新闻评论服务协议
0条评论
作者最新博文
关于我们 免责申明 意见反馈 讲师合作 广告合作 最新更新 English
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习
PHP中文网抖音号
发现有趣的

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号

  • 登录PHP中文网,和优秀的人一起学习!
    全站2000+教程免费学