css 背景圖片屬性

xiaoyuyyun發表於2013-07-26

背景圖片重複  background-repeat:no-repeat/ repeat/ repeat-x /repeat-y/ round  space inherit !important;/*背景重複*/

 background-attachment:   fixed local scroll inherit !important;

/*背景關聯scroll 預設值。背景影象會隨著頁面其餘部分的滾動而移動。
fixed 當頁面的其餘部分滾動時,背景影象不會移動。
inherit 規定應該從父元素繼承 background-attachment 屬性的設定。

background-orgin:顯示

background-clip:裁剪

background-size:背景圖與div保持一樣的高和寬

background-position:設定背景圖的位置

background-image:背景圖

background-color:上 右  下  左 (顏色可以自定義)

text-indent 還可以設定為負值。利用這種技術,可以實現很多有趣的效果,比如“懸掛縮排”,即第一行懸掛在元素中餘下部分的左邊:

p {text-indent: -5em;}

不過在為 text-indent 設定負值時要當心,如果對一個段落設定了負值,那麼首行的某些文字可能會超出瀏覽器視窗的左邊界。為了避免出現這種顯示問題,建議針對負縮排再設定一個外邊距或一些內邊距:

p {text-indent: -5em; padding-left: 5em;}
text-decoration:blink line-through none  overline underline;

/*文字的修飾  下劃線  閃爍 刪除線 上劃線*/


outline{/*輪廓*/
outline:;/*合併*/
outline-color:red;/*顏色*/
outline-offset:;/*偏移*/
outline-style:;/*樣式*/
outline-width:;/*寬度*/
}


ul li{
line-height:normal;
line-stacking:;/**/
list-style:;/*簡寫屬性。用於把所有用於列表的屬性設定於一個宣告中。*/
list-style-type: armenian circle cjk-ideographic decimal decimal-leading-zero disc georgian georgian hebrew hiragana hiragana-iroha katakana square;/*列表項的標誌型別*/
list-style-position:inside outside;/*位置*/}


table{
table-layout:fixed auto;/*顯示錶格*/
border-collapse: separate;
    empty-cells: show hide;/*顯示空白單元格*/
border-collapse:collapse separate;/*合併邊框*/
border-spacing:;/*調整間距*/
}

相關文章