2010年5月4日 星期二

背景圖案不重複(重複)

背景圖案不重複。
p {
background-image:url(yp.jpg);
background-repeat: no-repeat;
}

背景圖案在 x-方向重複。
p {
background-image:url(yp.jpg);
background-repeat: repeat-x;
}

背景圖案在 y-方向重複。
p {
background-image:url(yp.jpg);
background-repeat: repeat-y;
}

背景圖案在 x- 及 y-方向重複。
p {
background-image:url(yp.jpg);
background-repeat: repeat;
}


參考
http://css.1keydata.com/tw/background.php
http://www.hsiu28.net/style/style_3.php

沒有留言:

張貼留言