常見的樣式

2021-07-27 20:43:43 字數 1881 閱讀 7330

行間樣式表:

內部樣式表:

外部樣式表:

background:

height高度

width寬度

background-attachment:fixed; 背景是否滾動

background-color:gray; 背景顏色

background-image:url(bg.jpg);  背景圖

background-repeat:no-repeat; 背景圖是否重複

background-position:center 0px; 背景圖位置

border:

border-width邊框寬度

border-style   邊框樣式

border-color  邊框顏色

solid      實線

dashed 虛線

dotted   點線(ie6不相容)

padding:

padding-top         上邊內邊距

padding-right         右邊內邊距

padding-bottom    下邊內邊距

padding-left            左邊內邊距

padding: top right bottom left;

注意:內邊距相當於給乙個盒子加了填充厚度會影響盒子大小。

margin:

margin外邊距

外邊距的問題:

1、上下外邊距會疊壓;

2、父子級包含的時候子級的margin-top會傳遞給父級;(內邊距替代外邊距)

外邊距復合:margin:top right bottom left;

font-size                  文字大小

(一般均為偶數)

font-family              字型

(中文預設宋體)

color                        文字顏色

(英文、rgb、十六位進製色彩值)

line-height              行高

text-align                文字對齊方式

text-indent             首行縮排

(em縮排字元)

font-weight            文字著重

font-style                文字傾斜

text-decoration      文字修飾

letter-spacing         字母間距

word-spacing         單詞間距

(以空格為解析單位)

width寬度                                 height 高度

background背景                       border 邊框

padding內邊距                          margin 外邊距

font-size  文字大小                    font-family 字型

color文字顏色                    line-height 行高

text-align文字對齊方式             text-indent 首行縮排

font-weight文字著重                 font-style 文字樣式

text-decoration文字修飾           letter-spacing 字母間距

word-spacing單詞間距             

常見的樣式

一 css文字屬性 color 999999 文字顏色 font family 宋體,sans serif 文字字型 font size 9pt 文字大小 font style itelic 文字斜體 font variant small caps 小字型 letter spacing 1pt 字間...

常見的CSS樣式

常見的css樣式 color 文字顏色 background color 背景顏色 opacity 設定透明度 顏色 光的三原色 紅 綠 藍 三種顏色表示法 名詞表示法 red green blue 16進製制顏色表示法 000000 十六進製制 0 f ff 紅色 00 綠色 00 藍色 十進位制...

常見的樣式宣告

color 文字顏色 值 預設值 定義好的單詞 三原色 光學 紅綠藍 每種顏色可以使用0 255之間的數字來表達 色值寫法 rgb 0,0,0 hex表示法 十六進製制 紅綠藍 008c8c 當兩位數一樣的時候可以省略一位 幾種可以記住的顏色 紅 f40 黑色 000 白色 fff 紅 f00 綠 ...