博客列表 >后台小布局

后台小布局

没耐心的渔翁
没耐心的渔翁原创
2022年04月01日 19:40:21539浏览

后台

代码

  1. margin: 0px;
  2. }
  3. .div1{
  4. width: 100%;
  5. height: 110px;
  6. background: #efe;
  7. }
  8. .div2{
  9. width: 120px;
  10. height: 1000px;
  11. background: #efc;
  12. }
  13. .div3{
  14. /* css calc(自动调整表单域的大小以适应其容器的大小
  15. ) */
  16. width: calc(100% - 120px);
  17. height: 1000px;
  18. left: 120px;
  19. top: 110px;
  20. z-index: 9999;
  21. position: absolute
  22. }
  23. .div3 iframe{
  24. width: calc(100% - 120px);
  25. height: calc(100% - 110px)
  26. }
  27. </style>
  28. <body>
  29. <div class="div1">
  30. <h1>后台管理</h1>
  31. <div style="float: right;">
  32. <span>admin </span>
  33. <span><a href="javascript">退出</a></span>
  34. </div>
  35. </div>
  36. <div class="div2">
  37. <ul>
  38. <li style="line-height: 30px;"><a href="https://www.php.cn/" target="content">php中文网</a></li>
  39. <li style="line-height: 30px;"><a href="https://urzzex.cn/" target="content">币严</a></li>
  40. <li style="line-height: 30px;"><a href="https://image.baidu.com/"target="content">百度图片</a></li>
  41. <li style="line-height: 30px;"> <a href="http://www.zongheng.com/"target="content">纵横中文网</a></li>
  42. </ul>
  43. </div>
  44. <div class="div3">
  45. <iframe src="" frameborder="3" name="content"></iframe>
  46. </div>
  47. </body>
声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议