Home > Web Front-end > HTML Tutorial > html学习总结_html/css_WEB-ITnose

html学习总结_html/css_WEB-ITnose

WBOY
Release: 2016-06-21 08:55:50
Original
1190 people have browsed it

html学习总结

1、简介

    HTML(Hyper Text Markup Language)是一个标签语言。在现在B/S模式中专门用来描述网站的内容,HTML主要分为行内标签、块级标签。

    行类标签

总是在新行上开始;高度,行高、顶和底边距都可控制;宽度缺省是它的容器的100%,除非设定一个宽度
Copy after login

代码

<div>    <p>i<p></div>
Copy after login

图片


块级元素:

和其他元素都在一行上;高,行高及顶和底边距不可改变;宽度就是它的内容宽度,不可改变。
Copy after login

代码

<div>	<span>i<span></div>
Copy after login

    图片

二、分类

    1、常用的块级元素

    二、行内元素

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template