background-repeat参数
时间: 2023-07-21 10:57:06 浏览: 129
background-repeat是CSS中用来控制背景图像重复方式的属性。它有以下几个值可选:
1. repeat:默认值,背景图像在水平和垂直方向上平铺重复。
2. repeat-x:背景图像在水平方向上平铺重复,垂直方向不重复。
3. repeat-y:背景图像在垂直方向上平铺重复,水平方向不重复。
4. no-repeat:背景图像不重复,只显示一次。
5. space:背景图像在水平和垂直方向上平铺重复,但是在每个重复的图像之间留有间隔。
6. round:背景图像在水平和垂直方向上平铺重复,但是如果图像重复次数不能完全填满背景区域,则会自动缩小或放大图像,直到填满为止。
需要注意的是,background-repeat只对背景图片有效,对于背景颜色无效。
相关问题
以下选项中,不属于background属性参数的是什么?(1分) A background-image B background-position C background-url D background-repeat
选项C,background-url不属于background属性参数。在CSS中,background属性用于设置元素的背景样式,它包含多个子属性,其中包括background-image、background-position、background-repeat等,但并不存在background-url这个子属性。
background-repeat
background-repeat是用来设置背景图像的铺排填充方式的属性。它有以下几个可能的取值:repeat、repeat-x、repeat-y和no-repeat。其中,repeat表示在水平和垂直方向都进行重复填充,即默认方式;repeat-x表示只在水平方向进行重复填充;repeat-y表示只在垂直方向进行重复填充;no-repeat表示不进行重复填充,只显示一次背景图像。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* *2* *3* [css background参数设置问题](https://blog.csdn.net/qq_27674439/article/details/90674949)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_1"}}] [.reference_item style="max-width: 100%"]
[ .reference_list ]
阅读全文