Blogger Information
Blog 9
fans 0
comment 0
visits 6041
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
iframe写一个后台
蔡威
Original
557 people have browsed it

用iframe写一个后台

一首先头部header 里,可以用无序,我想横着排列 但不会,只写了两个 li 标签

  1. <header>
  2. <ul>
  3. <li>这里是头部</li>
  4. <li>我想横排但不会</li>
  5. </ul>
  6. </header>

二然后一个窗器 div class =”container”里面有aside标签

  1. 放里面三个 a 标签 要注意的是属性target 要关联下面firame的 name 值.不知道为啥要这么关联 我记得还有个for 是关联id的吧,有点搞混
  2. 里面 main 标签 中写iframe 要注意 name 值 要和上面a 标签关联的一致

    1. <div class="container">
    2. <aside style="display: grid">
    3. <a href="./demo1.html" target="comment">内联框架工作原理</a>
    4. <a href="../1208/demo1.html" target="comment">标题和段落</a>
    5. <a href="../1209/demo8.html" target="comment">表单</a>
    6. </aside>
    7. <main>
    8. <iframe
    9. srcdoc="点左面"
    10. frameborder="0"
    11. name="comment"
    12. width="800"
    13. height="600"
    14. ></iframe>
    15. </main>
    16. </div>

    完成后是这样

自测题

    1. html元素,标签和属性之间的关联与区别?
      答 元素是由一个或若干标签构成的,属性是标签的属性
  1. 为什么说html是结构化的文档?
    答 html是标记语言,就像是一个文档.他的格式要用标签和属性来确定.
  2. 表单控件中的name属性为什么非常重要?
    表单中的name 是要提交到 服务器语文接收的.
  3. 为什么现在都不再使用表格进行页面布局了?
    答 因为要用css布局
  4. 一个元素,最终呈现的样式,由几方面的因素决定的
    行内样式>自定样式>浏览器样式>继承样式
    自定义中 id > class >tag
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