加入收藏 | 设为首页 | 会员中心 | 我要投稿 济南站长网 (https://www.0531zz.com/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 服务器 > 系统 > 正文

超全面CSS样式整理

发布时间:2020-05-12 12:50:56 所属栏目:系统 来源:站长网
导读:副标题#e# 一 字体属性:(font) 大小 {font-size: x-large;}(特大)xx-small;(极小) 一般中文用不到,只要用数值就可以,单位:PX、PD 样式 {font-style: oblique;}(偏斜体)italic;(斜体) normal;(正常) 行高 {line-height: normal;}(正常) 单位:PX、PD、EM

background-color:#F5E2EC; /*背景颜色*/ 
background:transparent; /*透视背景*/ 
background-image : url(/image/bg.gif); /*背景图片*/ 
background-attachment : fixed; /*浮水印固定背景*/ 
background-repeat : repeat; /*重复排列-网页默认*/ 
background-repeat : no-repeat; /*不重复排列*/ 
background-repeat : repeat-x; /*在x轴重复排列*/ 
background-repeat : repeat-y; /*在y轴重复排列*/   

六、指定背景位置   

background-position : 90% 90%; /*背景图片x与y轴的位置*/ 
background-position : top; /*向上对齐*/ 
background-position : buttom; /*向下对齐*/ 
background-position : left; /*向左对齐*/ 
background-position : right; /*向右对齐*/ 
background-position : center; /*居中对齐*/   

七、CSS连接属性:   

a /*所有超链接*/ 
a:link /*超链接文字格式*/ 
a:visited /*浏览过的链接文字格式*/ 
a:active /*按下链接的格式*/ 
a:hover /*鼠标转到链接*/ 
鼠标光标样式: 
链接手指 CURSOR: hand 
十字体 cursor:crosshair 
箭头朝下 cursor:s-resize 
十字箭头 cursor:move 
箭头朝右 cursor:move 
加一问号 cursor:help 
箭头朝左 cursor:w-resize 
箭头朝上 cursor:n-resize 
箭头朝右上 cursor:ne-resize 
箭头朝左上 cursor:nw-resize 
文字I型 cursor:text 
箭头斜右下 cursor:se-resize 
箭头斜左下 cursor:sw-resize 
漏斗 cursor:wait 
光标图案(IE6) p {cursor:url("光标文件名.cur"),text;}  
 

八、CSS框线一览表:   

border-top : 1px solid #6699cc; /*上框线*/ 
border-bottom : 1px solid #6699cc; /*下框线*/ 
border-left : 1px solid #6699cc; /*左框线*/ 
border-right : 1px solid #6699cc; /*右框线*/ 
以上是建议书写方式,但也可以使用常规的方式 如下: 
border-top-color : #369 /*设置上框线top颜色*/ 
border-top-width :1px /*设置上框线top宽度*/ 
border-top-style : solid/*设置上框线top样式*/   

九、其他框线样式  
 

solid /*实线框*/ 
dotted /*虚线框*/ 
double /*双线框*/ 
groove /*立体内凸框*/ 
ridge /*立体浮雕框*/ 
inset /*凹框*/ 
outset /*凸框*/   

八、CSS表单运用: 

文字方块 
按钮 
复选框 
选择钮 
多行文字方块 
下拉式菜单 选项1选项2   

九、CSS边界样式: 

margin-top:10px; /*上边界*/ 
margin-right:10px; /*右边界值*/ 
margin-bottom:10px; /*下边界值*/ 
margin-left:10px; /*左边界值*/   

十、CSS 属性: 字体样式(Font Style) 

1 字体样式 {font:font-stylefont-variant font-weight font-size font-family} 
2 字体类型 {font-family:"字体1","字体2","字体3",...} 
3 字体大小 {font-size:数值|inherit| medium| large| larger| x-large| xx-large| small| smaller|x-small| xx-small} 
4 字体风格{font-style:inherit|italic|normal|oblique} 
5 字体粗细{font-weight:100-900|bold|bolder|lighter|normal;} 
6 字体颜色 {color:数值;} 
7 阴影颜色 {text-shadow:16位色值} 
8 字体行高 {line-height:数值|inherit|normal;} 
9 字 间 距 {letter-spacing:数值|inherit|normal} 
10 单词间距 {word-spacing:数值|inherit|normal} 
11 字体变形{font-variant:inherit|normal|small-cps } 
12 英文转换{text-transform:inherit|none|capitalize|uppercase|lowercase} 
13 字体变形{font-size-adjust:inherit|none} 
14字体  
{font-stretch:condensed|expanded|extra-condensed|extra-expanded|inherit|narrower|normal|semi-condensed|semi-expanded|ultra-condensed|ultra-expanded|wider}   

十一、文本样式(Text Style)  
 

1 行 间 距 {line-height:数值|inherit|normal;} 
2 文本修饰{text-decoration:inherit|none|underline|overline|line-through|blink} 
3 段首空格 {text-indent:数值|inherit} 
4 水平对齐{text-align:left|right|center|justify} 
5 垂直对齐  
{vertical-align:inherit|top|bottom|text-top|text-bottom|baseline|middle|sub|super} 
6 书写方式{writing-mode:lr-tb|tb-rl}   

十二、背景样式 

(编辑:济南站长网)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

热点阅读