赞
踩
html&css
html:
常用的标签:
div、p、ul li、ol li、h1-h6、a、span、b、u、i、input(属性text、number、password、radio、checkbox、submit、reset)、form、select>option、textarea
h5(新标签):header、nav、footer、main、section、video、audio、input(color、range、week、date)
标签的分类:
单双标签:单标签没有与之对应的结束标签,而双标签有
行内标签和块级标签:
ccs:
继承性:与文本有关的样式,都可以继承
css书写方式:
<link rel="stylesheet" href="">
<style></style>
<img src="" width="290px" alt="">
css选择器:
常用样式:
背景:
文字:
文字颜色:color
文字大小:font-size
文字字体:font-family
文字加粗:font-weight
文字斜体:font-style:itelic
行高:line-height
文字对齐:text-align
下划线:text-decoration:overline(加顶线)
underline(加下划线)
none(删除链接下划线)
边框:
border(可以设置left,right,top,bottom方向):
border-color:边框颜色
solid:实线框
dotted:虚线框
边界:margin(可以设置left,right,top,bottom方向):
填充距:padding(可以设置left,right,top,bottom方向):
文本转换:
浮动:float
定位:
固定定位:
参照物:窗口
不占位
脱离标准流
绝对定位:position:absolute
相对定位:position:relative
overflow:hidden(作用):
精灵图片的使用: CSS 精灵其实是将网页中的一些背景图像整合到一张大图中(精灵图),然而,各个网页元素通常只需要精灵图中不同位置的某个小图,要想精确定位到精灵图中的某个小图,就需要使用CSS的background-image、background-repeat和background-position属性进行背景定位,其中最关键的是使用background-position属性精确地定位。
文字图标的使用:
css3:
transform:旋转
animation:animation 属性是一个简写属性,用于设置六个动画属性:
语法:animation: name duration timing-function delay iteration-count direction;
transition:transition 属性设置元素当过渡效果,四个简写属性为:
语法:transition: property duration timing-function delay;
border-radius:做圆用
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。