html5/css3
一、HTML5
1、新标签
<header> //页面标题
<nav> //导航栏
<section> //页面内容区域
<aside> //侧边栏
<footer> //页脚
2、新元素:
<video>//视频
<source src="" type="video">
</video>
audio//音频
canvas//画布
二、CSS3
1、浏览器厂商前缀
-wekit-
-ms-
-moz-
2、过渡效果 transtion:background 0.5s ease;
3、边框阴影和倒圆角
box-shadow:px #
border-radius:px
4、背景
5、渐变
background:liner-gradient(to bottom right red,blue)//线性
background:radial-gradient()//放射性
6、文本效果
h3{text shadow:px;}//文本阴影
a.trans{bg:#;transtion:bg 0.5s ease;}
a.trans hover{bg:#;}//悬停背景色