html 常用属性前端工程师需知
<html> html主体<head> 头部
<body> 身体
块级元素
<div> 最常用的元素
<p> 一般用于文字排列,段落
<dl> dd dl 一般用于定义 带缩近的排版 如:友道在线翻译
<dd>
<h1> h1 - h6 是html 内置 6个标题样式
<h2>
<h3>
<h4>
<h5>
<h6>
<ul> ul 一般用于定义菜单或新闻列表 list-style-type:none ; 来取消 样式
<li></li>
<li></li>
<li></li>
</ul>
内连元素
<span></span>
<b></b> b 和 strong 样式一样 等于 css font-weight:bold
<strong></strong>
<i></i> i 和 em 样式一样
<em></em>
<u> 下划线字体 可以使用 css 来控制 text-decoration:underline
<u></u>
一般来讲,不能直接到 h1 p div 排在一起,需要容器来包裹。
<div class="header">
<p>这里是头部</p>
</div>
<div class="content">
<h1>这里是内容</h1>
</div>
- 上一篇:css 半透明效果兼容IE6 - 9 FF
- 下一篇:js 控制加载 js 文件