Blogger Information
Blog 19
fans 1
comment 0
visits 13357
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
flex布局基础知识实战案例--php培训第九期线上班
涤尘
Original
612 people have browsed it

网站管理后台首页

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>后台首页</title>
  5. <style type="text/css">
  6. * {
  7. padding: 0;
  8. margin: 0;
  9. }
  10. body {
  11. height: 100vh;
  12. display: flex;
  13. flex-flow:column nowrap;
  14. }
  15. /*头部底部样式设置*/
  16. header,footer {
  17. box-sizing: border-box;
  18. background-color: #ede;
  19. text-align: center;
  20. height: 40px;
  21. padding: 7px;
  22. }
  23. main {
  24. box-sizing: border-box;
  25. background-color: #66ff33;
  26. display: flex;
  27. flex:1;
  28. }
  29. /*设置左边栏的*/
  30. main > aside {
  31. box-sizing: border-box;
  32. width: 200px;
  33. background-color: #808080;
  34. }
  35. /*左侧栏内容样式设置*/
  36. main > aside > a {
  37. text-decoration: none;
  38. color: white;
  39. margin: 15px;
  40. display: flex;
  41. justify-content: center;
  42. align-items: center;
  43. }
  44. main > aside >a:hover {
  45. background: linear-gradient( lightcyan, blue);
  46. }
  47. /*右侧内容设置*/
  48. main > iframe {
  49. box-sizing: border-box;
  50. flex: 1;
  51. background-color: lightblue;
  52. }
  53. </style>
  54. </head>
  55. <body>
  56. <header>全球最大的快消品连锁平台</header>
  57. <main>
  58. <aside>
  59. <a href="">商品列表</a>
  60. <a href="">订单列表</a>
  61. <a href="">会员列表</a>
  62. </aside>
  63. <iframe srcdoc="<h2>欢迎你</h2>" frameborder="1" name="content" width="100%" height="100%"></iframe>
  64. </main>
  65. <footer>
  66. 本站技术支持PHP中文网
  67. </footer>
  68. </body>
  69. </html>
显示效果

手抄代码如下







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