Blogger Information
Blog 16
fans 0
comment 0
visits 15841
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
12-11自测题
Allen在php中文网的学习笔记
Original
637 people have browsed it

题目内容

  1. html元素,标签和属性之间的关联与区别?
  2. 为什么说html是结构化的文档?
  3. 表单控件中的name属性为什么非常重要?
  4. 为什么现在都不再使用表格进行页面布局了?
  5. 一个元素,最终呈现的样式,由几方面的因素决定的

html元素,标签和属性之间的关联与区别?

<p>这是一个标签

标签是由< and >两个尖括号组成的,一般都是成对出现
例如<p></p>,但是也有单独出现的,例如:<br> <hr>……等
<p>我和标签一起组成了元素</p>

  1. html是由html元素组成的,而元素是由html标签包裹的。

<p xxx="xxx">test</p> 在本案例中,xxx=xxx就是属性。

关联

  1. html文档是由元素组成的,而元素是由标签包裹组成的,属性定义了标签或元素的样式特性

区别

  1. html文件一定包含元素,元素的标签并不一定需要属性。

为什么说html是结构化的文档?

  1. html是由固定结构组成的
  2. <html>
  3. <head>
  4. </head>
  5. <body>
  6. </body>
  7. </html>

表单控件中的name属性为什么非常重要?

  1. 表单控件中的name属性便于将数据含名称传送到后端接收脚本进行处理。

为什么现在都不再使用表格进行页面布局了?

  1. 随着移动端的崛起,表格布局已经无法满足不同设备尺寸之间的开发,且维护工作量巨大。便被更加便于维护开发的grid以及flex布局等替代。

一个元素,最终呈现的样式,由几方面的因素决定的?

  1. 由属性,样式,以及结构等相同构成。
  2. 标签分为行内元素以及块元素,不同的元素可能单独占据一行等情况。
  3. 属性决定元素的引用样式,以及上下文中的控件关系等。

其他信息

部分资料参考:

My Blog: https://www.gzj2001.com
My Blog In PHP.cn:https://www.php.cn/blog/linwx611.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