国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

如何在水平方向重復(fù)背景圖像

實(shí)例解析:

background-repeat屬性用于設(shè)置背景圖像的平鋪方式??梢栽O(shè)置以下值:

 ● repeat:默認(rèn)值,背景圖像將向垂直和水平方向重復(fù)。

 ● repeat-x:只有水平位置會重復(fù)背景圖像。

 ● repeat-y:只有垂直位置會重復(fù)背景圖像。

 ● no-repeat:設(shè)置背景圖片不重復(fù)。




繼續(xù)學(xué)習(xí)
||
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>php中文網(wǎng)(php.cn)</title> <style> body { background-image:url('https://img.php.cn/upload/article/000/000/015/5c6a80bba060c467.png'); background-repeat:repeat-x; } </style> </head> <body> <h1>Hello World!</h1> </body> </html>
提交重置代碼