Blogger Information
Blog 7
fans 0
comment 0
visits 4529
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
HTML基础知识
NiceCode的博客
Original
715 people have browsed it

一、什么是html语言?

超文本标记语言,即HTML(Hyper Text Markup Language),是用于描述网页文档的一种标记语言。

二、什么是html标签?

  1. 用一对尖括号 <> 包围关键字的特征称为html标签,比如:<html>

  2. html标签分为双标签和单标签,比如:双标签:<html></html>,单标签:<meta>

  3. 双标签包含开始标签和结束标签,开始标签是关键字后不带"/",如:<html>,

    结束标签则在关键字后带"/",如:</html>,

  4. 单标签只有一个开始标签,比如:<meta>

三、什么是html元素?

"HTML 标签" 和 "HTML 元素" 通常都是描述同样的意思.

四、html标签显示方式

按html标签显示方式分为三种,块级(block),行内(inline),行内块级(inline-block)。

  1. 块级(block):有宽高,垂直排列,一个元素独占一行。

  2. 行内(inline):无宽高,水平排列,多个元素并排一行。

  3. 行内块级(inline-block):有宽高,水平排列,多个块元素并排一行。

  4. 三种的显示方式都可以互相转换,用css的 display 属性进行互相转换。



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