Blogger Information
Blog 16
fans 0
comment 0
visits 16737
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
html一些基本概念
刚哥哥
Original
774 people have browsed it

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

html 是多个html标签组成的文档,结构层次分明,
  1. <html>
  2. <head>
  3. <title></title>
  4. </head>
  5. <body>
  6. <p>这个是一个段落</p>
  7. </body>
  8. </html>

这些层次分明的html标签,通过一层一层的嵌套,形成了一个目录结构,层次分明的html文档,这个是它的特征,所以称为结构化文档。

表单元素中的name属性为什么那么总要?

表单主要用于获取用户提交的数据,表单的name属性,是后台代码获取表单数据的标识,可以看成是一个变量,如果没有设置name属性,表单提交的数据后台服务器就获取不到。

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

html中,有单标签,双标签,比如:<br/>

<p></p>,成对的标签 就是一个元素,
属性:是对标签的描述和配置,可以对标签进行个性化配置,

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

最终呈现样式由 4个方面因素决定,分别为:
继承样式
浏览器代理用户样式
自定义样式样式
行内样式

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

现在流行使用div+css 进行页面布局,相比表格布局,有以下几点:
1、 对网站改版 更容易,更灵活。
2、内容和形式分类,
3、对搜索引擎友好,更好seo。

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