背景(Background)如何縮寫?_Div+CSS教程
教程Tag:暫無Tag,歡迎添加,賺取U幣!
Background背景的屬性如下:
示例代碼 [hl5o.cn]
●background-color:#f00;
●background-image:url(background.gif);
●background-repeat:no-repeat;
●background-attachment:fixed;
●background-position:0 0;
●background-image:url(background.gif);
●background-repeat:no-repeat;
●background-attachment:fixed;
●background-position:0 0;
可以縮寫為一句:background:#f00 url(background.gif) no-repeat fixed 0 0;
語法是background:color image repeat attachment position;
你可以省略其中一個或多個屬性值,假如省略,該屬性值將用瀏覽器默認值,默認值為:
示例代碼 [hl5o.cn]
●color: transparent
●image: none
●repeat: repeat
●attachment: scroll
●position: 0% 0%
●image: none
●repeat: repeat
●attachment: scroll
●position: 0% 0%
相關Div+CSS教程:
- 相關鏈接:
- 教程說明:
Div+CSS教程-背景(Background)如何縮寫?
。