Blogger Information
Blog 47
fans 3
comment 0
visits 38274
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
1210-iframe内嵌与css初识
Original
535 people have browsed it

1210-iframe与css初识

1.iframe内联框架的工作原理

  1. <!-- a标签内联iframe标签时,必须给a标签设置一个target,以及给iframe设置name,值要对等 -->
  2. <!-- iframe标签要放文字的时候,可以加个srcdoc,里面可以放文字及元素 -->
  3. <div>
  4. <a href="https://j.map.baidu.com/36/OU8" target="gd">广东</a>
  5. <iframe srcdoc="广东地图" name="gd"></iframe>
  6. </div>
  7. <div>
  8. <a href="https://j.map.baidu.com/36/OU8" target="sz">深圳</a>
  9. <iframe srcdoc="深圳地图" name="sz"></iframe>
  10. </div>
实战演示:


2.iframe做一个简单迷你后台

给iframe加name属性,a标签加target属性,值相等,就可以内联

  1. <header class="header">网站管理后台</header>
  2. <div class="aside">
  3. <!-- 侧边栏 -->
  4. <a href="/1209/demo3.html" target="content">首页</a>
  5. <a href="/1209/demo5.html" target="content">用户管理</a>
  6. <a href="/1208/demo3.html" target="content">订单管理</a>
  7. <a href="/1208/demo1.html" target="content">系统设置</a>
  8. </div>
  9. <div class="main">
  10. <!-- 主体 -->
  11. <iframe srcdoc="请点击侧边栏导航" name="content"></iframe>
  12. </div>
实战演示:


3.布局元素

说明
header 页头
aside 侧边栏
main 主体
footer 页脚
div 通用容器块标签
  1. <header><h1>header</h1></header>
  2. <!-- div块标签 -->
  3. <div class="container">
  4. <!-- 侧边栏 -->
  5. <aside>
  6. <h1>aside</h1>
  7. </aside>
  8. <!-- 主体 -->
  9. <main>
  10. <h1>main</h1>
  11. <!-- <article>今天是个好日子</article> -->
  12. <div>
  13. <section>
  14. 广告位
  15. </section>
  16. <section>
  17. 广告位
  18. </section>
  19. </div>
  20. </main>
  21. </div>
  22. <!-- 页脚 -->
  23. <footer>footer</footer>
实战演示:


4.初识css

术语:规则,选择器,声明块,属性和值

  • 选择器:h1
  • 声明块:由一堆”{…}”包住的内容
  • 规则:选择器 + 声明块
  • 属性和值:写在声明块中的名值对
  1. /* 标签选择器 */
  2. h1{
  3. color: aquamarine;
  4. }
  5. /* 类选择器 */
  6. .title{
  7. color: blue;
  8. }
  9. /* id选择器 */
  10. #hello{
  11. color: blueviolet;
  12. }
  13. /*
  14. css是层叠样式
  15. 优先级:标签<类<id
  16. */
实战演示:


5.层叠与优先级

  • 1.优先级

    1.css是图层样式表
    2.优先级:元素标签 > 类class < id属性
    3.!important 可以提升最大优先级

图示:

  • 2.层叠
    • 影响css样式的四个来源
      1. HTML默认样式
      2. 浏览器用户代理样式
      3. 用户自定义:当前页面css代码
      4. 行内:style


作业:iframe写一个简单的小后台

  1. <!-- 头部 -->
  2. <header class="header"><h3>商城后台管理系统</h3></header>
  3. <div class="aside">
  4. <!-- 侧边栏 -->
  5. <a href="/1209/demo1.html" target="con">控制面板</a>
  6. <a href="/1209/demo2.html" target="con">商品分类</a>
  7. <a href="/1209/demo3.html" target="con">商品管理</a>
  8. <a href="/1209/demo4.html" target="con">会员管理</a>
  9. <a href="/1209/demo5.html" target="con">商家管理</a>
  10. </div>
  11. <!-- 主体 -->
  12. <div class="main">
  13. <iframe srcdoc="请点击侧边栏" name="con"></iframe>
  14. </div>

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