Blogger Information
Blog 15
fans 0
comment 0
visits 9204
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
1210-QA和CSS入门
fanyigle_php
Original
704 people have browsed it
  1. html元素,标签和属性之间的关联与区别?
    元素是一个统称。元素由标签(对)构成,标签本身又可以描述自己的属性。
  2. 为什么说html是结构化的文档?
    暂时回答不上
  3. 表单控件中的name属性为什么非常重要?
    向服务器传递值的时候是通过name、value对来实现的
  4. 为什么现在都不再使用表格进行页面布局了?
    暂时回答不上
  5. 一个元素,最终呈现的样式,由几方面的因素决定的
  • 行内属性
  • id值、类属性、标签名
  • 浏览器
  • 继承
    目前以为离元素最近、最独特的样式优先级最高;
    ```html
    <!DOCTYPE html>

    <html lang="en">
    <head>
    <title>iframe小后台</title>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <link href="css/style.css" rel="stylesheet" />
    <style>
    h3 {
    color: red;
    }
    </style>
    </head>
    <body>
    <div class="header"><h3>后台管理</h3></div>
    <div class="body">
    <div class="aside">
    <a href="demo1.html" target="showaread">看demo1</a>
    <a href="demo2.html" target="showaread">看demo2</a>
    <a href="demo3.html" target="showaread">看demo3</a>
    <a href="demo4.html" target="showaread">看demo4</a>
    </div>
    <div class="main">
    <iframe srcdoc="我是功能展示区" frameborder="0" name="showaread" ></iframe>
    </div>
    </div>
    <div class="footer"></div>
    </body>
    </html>

```

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