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

How to repeat background image horizontally

Example analysis:

The background-repeat attribute is used to set the tiling method of the background image. The following values ??can be set:

● Repeat: Default value, the background image will repeat vertically and horizontally.

● repeat-x: Only the horizontal position will repeat the background image.

● repeat-y: Only the vertical position will repeat the background image.

 ● no-repeat: Set the background image not to repeat.




Continuing Learning
||
<!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>
submitReset Code