HTML5
HTML5的新特性
HTML5新增的Input类型
email/url/week/date/month/color/time/number/search(清楚输入内容)
HTML5新增表单属性
placeholder:替换文本
autofoucx:自动聚焦
required:必填选项
autocomplete n/off与name搭配使用,记录历史输入
multiple:多文件上传
HTML5新增的多媒体标签
1.video
src
controls
autoplay
muted
loop
width
heigh
poster
preload
2.audio
src
loop
controls
CSS3
一box-sizing
1.content-box
border-box
使用box-sizing:border-box的时候,padding和border不要超过盒子的宽度
二CSS3新增选择器
1.属性选择器
2.结构伪类选择器
nth-child()
nth-of-type()
3.伪元素选择器 ::before/after
content必须属性
过度:transision:all 1s;
|