亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

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