Blogger Information
Blog 13
fans 0
comment 0
visits 8363
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
1210用iframe实现简易后台+CSS优先级
一米互联
Original
450 people have browsed it
  1. <!--ifram实现简易后台-->
  2. <div class="top">后台管理系统</div>
  3. <div class="left">
  4. <a href="http://www.baidu.com" target="content">百度</a>
  5. <a href="http://www.taobao.com" target="content">淘宝</a>
  6. <a href="https://www.jd.com" target="content">京东</a>
  7. <a href="https://www.12306.cn" target="content">12306</a>
  8. <a href="http://www.qq.com" target="content">QQ</a>
  9. </div>
  10. <div class="right">
  11. <iframe srcdoc="请点击左侧按钮" name="content"></iframe>
  12. </div>
  1. .top{
  2. height: 40px;
  3. background-color: aquamarine;
  4. border: 1px solid #898989;
  5. }
  6. .left{
  7. width: 20%;
  8. background-color: blanchedalmond;
  9. float: left;
  10. }
  11. .left a{
  12. display:block;
  13. height: 30px;
  14. border: 1px solid #898989;
  15. text-align: center;
  16. color: black;
  17. text-decoration: none;
  18. line-height: 30px;
  19. }
  20. .right iframe{
  21. border: none;
  22. width: 79.6%;
  23. border: 1px solid black;
  24. height: 158px;
  25. }

  1. <!--理解css优先级,并实例图示演示元素样式的四个来源-->
  2. <span id="one" class="one" style="color:black;">这是一段内容</span>
  3. <style>
  4. span{
  5. color: red;
  6. }
  7. .one{
  8. color: blue;
  9. }
  10. #one{
  11. color: pink;
  12. }
  13. </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