过渡与动画
过渡 transition:property duration delay timing-function transition-property:过渡属性的名称 none:没有过渡属性all:所有的属性都过渡(默认值)property:具体的属性名称 transition-durati ...
阅读更多
圆角与文本
圆角 border-radius 如果是一个值,那么 top-left、top-right、bottom-right、bottom-left 四个值相等。 如果是两个值,那么 top-left和bottom-right相等,为第一个值,top-right和bottom-left值相等,为第二个值。 ...
阅读更多
CSS3背景
CSS背景属性回顾背景单个属性 background-image background-color background-repeat background-position background-attachment 背景符合属性 background 注意:复合属性会覆盖前面的 ...
阅读更多
HTML5选择器
CSS选择器回顾 ID选择器 类名选择器:多类(.class1.class2)不被ie6支持 标签(元素)选择器 组合(后代)选择器 通配符选择器 直接子元素选择器 >:ie6不支持 相邻兄弟选择器 +:ie6不支持 属性选择器 伪元素选择器 伪类选择器 CSS新增选择器 通用兄弟(关联)选 ...
阅读更多
HTML5语法,标签,属性
HTML 5的语法html5相对于以前的html(html4,xhtml等)更加简洁更加的人性化。主要体现在一下几个方面: 文档申明:DOCTYPE 字符编码:charset 不区分大小写了:DIV标签与div标签一样 布尔值:主要是关于input等的checked=”checked”属性 可以省 ...
阅读更多