标签:img 时间 poster html标签 selected 预加载 disable -- 文本
border:
border-style
border-color
border-width
border-left:
border-right
border-bottom
border-top
border-style-left
border-style-right
border-style-top
border-style-bottom
border-*-left/top/right/bottom
background: color image repeate postion
background-color
background-image
background-repeat
background-position
background-attachment
CSS sprites 精灵图
background-color:red;
background:url()
background:
background-color:
width/max-width/min-width
height...
<a href="" target="" title="" download></a>
<div id="锚点名"></div>
<a name="锚点名"></a>
<map name="" id="">
<area shape="" coords="" href="" target="" title="">
</map>
<ol>
的属性: start type ="1/a/A/i/I" reversed
<ul><li>
<dl> <dt> <dd>
适用于<ol>
和<ul>
也可以设置给 <li>
list-style-type: disc/circle/square.../none
list-style-position: outside/inside
list-style-image: url()
list-style: 复合属性
<table></table>
<thead></thead>
<tbody></tbody>
<tfoot></tfoot>
<caption></caption> 标题
<tr></tr> 行
<td></td> 单元格
<th></th> 表头单元格
table-layout: auto / fixed 列宽固定(相等)
border-collapse: separate/ collapse 合并单元格边框
border-spacing: 长度; 单元格和单元格之间的间隙 单元格不能合并
caption-side: top/bottom 标题的位置
empty-cells:hide/show 空的单元格显示/隐藏 单元格不能合并
td或者th的属性:
colspan 跨列
rowspan 跨行
<input name="" type="text">
placeholder
maxlength
value
<input name="" type="password">
placeholder
maxlength
value
<input type="radio" name="" value="" checked>
<input type="checkbox" name="" value="" checked>
<input type="file" name="">
multiple 多个
input:email
input:url
input:number max/min/step
input:search
input:tel
<input type="range" name="" value="" max="" min="" step="">
input:color
<!--日期-->
<input type="date" name="date">
?
<!--月份-->
<input type="month" name="month">
?
<!--星期-->
<input type="week" name="week">
?
<!--时间-->
<input type="time" name="time">
?
<!--时间日期-->
<input type="datetime-local" name="dt">
<select name="">
<option value=""></option>
<option value="" selected></option>
<option value=""></option>
</select>
?
multiple 多选
<textarea name="" rows="" cols=""></textarea>
maxlenth
input:submit input:reset input:button
button:submit button:reset button:button 默认submit
<form></form> action method
<input> type name max/min/step maxlength checked value placeholder(H5) list(H5)
<select></select> name
<option></option> value
<textarea></textarea> rows cols name placeholder
?
<fieldset></fieldset>
<legend></legend>
?
<datalist></datalist>(H5) 嵌套option
?
required 属性 给所有可以输入的表单控件
email/url/number
pattern 属性 所有可输入
ttile
disabled 所有的表单控件元素 禁用
enabled 可用
readonly 只读 用于可以输入的表单控件(input/textarea)
autofocus 自动获取焦点 所有的表单元素 H5
autocomplete 自动完成 on/off H5
pattern
title
required
<video src=""></video>
controls
autoplay
poster= ""
preload 预加载
loop
mp4 / ogg / webm
<audio src=""></audio>
controls
autoplay
preload
loop
mp3 / wav / ogg
<video>
<source src="" type="">
<source src="" type="">
<source src="" type="">
</video>
?
<audio>
<source src="" type="">
<source src="" type="">
<source src="" type="">
</audio>
标签:img 时间 poster html标签 selected 预加载 disable -- 文本
原文地址:https://www.cnblogs.com/Roc-Atlantis/p/9390631.html