1.css设计基础
div用来对块级元素进行分组,span可以对行内元素进行分组和标识。
链接方式:
内边距padding,外边距margin
定义边框:
div{
border-width:1px; 边框大小;
border-style:solid;边框样式为实线边框;
boeder-color:#FFF;边框颜色为红色;
}
也可以简写
div{border:1px solid #FFF}
背景简写:
body{
background-color:#FFF;
background-image:url(background.gif);背景图片
background-repeat:no-repeat;背景图片无平铺
background-attachment:fixed;背景图片固定,不随滚动而滚动
background-position:0 0;背景图片位置
}
可写为
body{background:#FFF url(background.gif) no-repeat fixed 0 0;}
字体简写:
body{
font-style:italic; 字体为斜体
font-variant:small-caps;定义字体为小写型的大写字母,针对英文
font-weight:bold;文字加粗
font-size:12px;定义字体大小
line-height:140%;定义字体行高
font-family:"Lucida Grande",sans-serif;定义字体名称
}
列表简写
{
list-style-image:url(image.gif); 覆盖预设标签用image.gif图片代替
list-style-position: inside;将表项目标签在文本以内,且环绕文本根据标签对齐
list-style-type:square;将列表的预设标签定义为实体方块;
}
2.字体和文本样式
字体类型:font-family:name;比如宋体
字体大小:font-size:16px;
字体颜色:color:blue;
字体粗细:font-weight:normal|bold|bolder|lighter|100|200|.......|900|
斜体字体:font-style:normal|italic|oblique
下划线,删除,顶划线:text-decoration:none||underline||overline||line-through||blink
字体大小写:font-variant:normal||small-caps
针对英文的大小写转化:
text-transform:none||capitalize||uppercase||lowercase/无转化/每个单词首字母大写/全部大写/全部小写
文本对齐:text-align:left||right||center||justify
定义垂直对齐:auto||baseline||sub||super||top||text-top||middle||bottom||text-bottom||length
定义字间距:letter-spacing:1em
定义词间距:word-spacing:1em
定义行间距:line-height:normal||length,例如12pt,2em
首行缩进:text-indent:2em;缩进两个字符
鼠标悬停:a:hover{}, 图片悬停a:hover img{边框样式}
3.图片样式
定义图片边框:
boder-style:参数;dotted下划线,dashed虚线
boder-color:参数
boder-width:数值;边框宽度
图片大小:
img{
width:数值;
height:数值;
}
图片横向对齐:
借用父元素设置,style=“text-align:left||center||right”
纵向对齐:
{vertical-align:参数}
文字环绕效果:
{float:left||right||none}
图片圆角:
{border-radius: 10px}
定义背景图片:
background-image:url;
背景图片重复:
background-repeat:repeat-x||repeat-y||no-repeat;/在x轴方向上重复;
背景图片位置:
background-position:position||数值
position 可以是center,center center,top left,top right......也可以是:20px 30px或20% 30%
固定背景图片:
background-attachment: scroll或fixed;背景图片随着对象内容滚动,背景图片固定
4.列表样式设置
设置列表项符号:list-style-type:square;
定义项目的图片符号:list-style-image:none||url(url)
5。表格
表格边框重叠:border-collapse:collapse;
凹槽立体效果输入框:border:groove #ccc 1px
隐藏:display: none;显示:block;
非IE浏览器兼容过滤器:html>/**/body #Element{}。