在CSS中,可以使用background-repeat属性来设置背景图片不重复。background-repeat属性用于设置背景图片的重复方式,将background-repeat属性值设为no-repeat即为背景图片不重复。
background-repeat属性可以设置的值:
repeat:默认。背景图像将在垂直方向和水平方向重复。
repeat-x:背景图像将在水平方向重复。
repeat-y:背景图像将在垂直方向重复。
no-repeat:背景图像将仅显示一次。
css使用background-repeat设置背景图片不重复和不使用background-repeat属性对比。
示例:
不设置background-repeat属性
<html> <head> <style type="text/css"> body { background-image: url(/i/eg_bg_03.webp); } </style> </head> <body> </body> </html>
效果图:
使用background-repeat属性设置背景图片不重复。
<html> <head> <style type="text/css"> body { background-image: url(/i/eg_bg_03.webp); background-repeat: no-repeat } </style> </head> <body> </body> </html>
效果图:
以上就是css怎么设置背景图片不重复?的详细内容,更多请关注易知道|edz.cc其它相关文章!