CSS學習總結

CSS學習總結ide

1、CSS介紹學習



2、背景字體

一、背景顏色 background-colorurl

background-color:red;
spa

二、背景圖像 background-img圖片

background-img:url('abc.jpg');
it

三、不讓圖像平鋪 background-repeatio

body{class

    background-img:url('abc.jpg');im

    background-repeat:no-repeat;  表示背景圖片平鋪

或者background-repeat:repeat;      表示背景圖片不平鋪

}

四、改變背景圖片的位置  background-position


body{

    background-img:url('abc.jpg');

    background-repeat:no-repeat;  表示背景圖片平鋪

或者background-repeat:repeat;      表示背景圖片不平鋪

    background-position:right top;  表示圖片的位置位於右而且靠上

}

能夠簡寫爲:

body {background:red url('abc.jpg') no-repeat right top;}



2、文本樣式

一、div邊框

  1) div邊框設置:

    border:1px  solid  red;

    border-radius:30px;  將邊框畫成圓角。

二、



3、字體樣式

相關文章
相關標籤/搜索