- repeat
- repeat-x
- repeat-y
- no-repeat
repeat 就是重複, repeat-x 為水平方向重複, repeat-y 為垂直方向重複, no-repeat 則是沒有重複。
舉例如下
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | div { margin : 2px ; width : 200px ; height : 200px ; } .examplerepeat { background-image : url (gear.png); background-repeat : repeat ; } .examplerepeatx { background-image : url (gear.png); background-repeat : repeat-x ; } .examplerepeaty { background-image : url (gear.png); background-repeat : repeat-y ; } .examplenorepeat { background-image : url (gear.png); background-repeat : no-repeat ; } /* 《程式語言教學誌》的範例程式 檔名:background05.css 功能:示範 CSS 2.1 樣式表的使用 作者:張凱慶 時間:西元 2011 年 7 月 */ |
我們以下面的 HTML 文件載入
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | < html > < head > < title >網頁標題</ title > < link rel = "stylesheet" type = "text/css" href = "background05.css" > </ head > < body > < table >< tr >< td > < div class = "examplerepeat" ></ div > </ td >< td > < div class = "examplerepeatx" ></ div > </ td ></ tr >< tr >< td > < div class = "examplerepeaty" ></ div > </ td >< td > < div class = "examplenorepeat" ></ div > </ td ></ tr ></ table > </ body > </ html > <!-- 《程式語言教學誌》的範例程式 檔名:background05.html 功能:示範 CSS 2.1 樣式表的使用 作者:張凱慶 時間:西元 2011 年 7 月 --> |
瀏覽器 (broswer) 開啟如下

中英文術語對照 | |
---|---|
性質 | property |
關鍵字 | keyword |
瀏覽器 | broswer |
您可以繼續參考
JavaScript 範例
背景相關
相關目錄
CSS 2.1 快速導覽
HTML, CSS 教材
首頁
參考資料
http://www.w3.org/TR/CSS21/colors.html
https://developer.mozilla.org/en/CSS/background-repeat
沒有留言:
張貼留言