CSS样式background-repeat:repeat-x解释正确的是()A.背景图片平铺B.背景图片垂直平铺C.背景图片垂直水平平铺D.背景图片不平铺
background: url('../images/bg.jpg') no-repeat center; 其中的no-repeat就相当于单独设置background-repeat: no-repeat,很常用,就是为了不让背景图重复平铺,因为默认是横向和纵向都会平铺的。 接下来,我将具体讲讲background-repeat的几个属性值。 一、repeat、repeat-x、repeat-y 1. repeat 默认值,横向和...
基本语法: background-repeat:repeat|repeat-x|repeat-y|no-repeat; repeat:默认值,背景图像将向垂直和水平方向重复。 repeat-x:只有水平位置会重复背景图像。 repeat-y:只有垂直位置会重复背景图像。 no-repeat:设置背景图片不会重复。 说明:background-repeat属性定义了图像的平铺模式。从原图像开始重复,原图像由b...
abackground-repeat:repeat-x; 背景重覆:重覆x;[translate]
<input id="verifyCode" name='verifyCode'style="background: url(images/login_6.gif) repeat-x; border: solid 1px #27B3FE; heig
Style backgroundRepeat 属性 Style 对象 定义和用法 backgroundRepeat 属性设置或返回如何重复背景图像。 语法 设置 backgroundRepeat 属性: Object.style.backgroundRepeat='repeat|repeat-x|repeat-y|no-repeat|inherit' 返回 backgroundRepeat 属性: O..
background-repeat: 指背景图⽚的重复与否以及重复⽅式, 有no-repeat, repeat, repeat-x, repeat-y四种属性值.no-repeat: 即⽆论背景图⽚的⼤⼩, 只显⽰单个背景图⽚, 如⾸页的第⼀篇⽂章标题前的”NEW”图标, 代码如上所⽰; repeat: 指背景图⽚横向和纵向重复连续显⽰;repeat-x:...
Style backgroundRepeat 属性 Style 对象 定义和用法 backgroundRepeat 属性设置或返回如何重复背景图像。 语法 设置 backgroundRepeat 属性: Object.style.backgroundRepeat='repeat|repeat-x|repeat-y|no-repeat|inherit' 返回 backgroundRepeat 属性: O..
百度试题 题目在CSS中,当background-repeat属性的取值为repeat-x时表示背景图案在垂直方向上平铺 A.正确B.错误相关知识点: 试题来源: 解析 B 反馈 收藏
repeat-x : 背景图像在横向上平铺 repeat-y : 背景图像在纵向平铺 说明: 设置或检索对象的背景图像是否及如何铺排。必须先指定对象的背景图像。 对应的脚本特性为backgroundRepeat。 示例: menu { background: url("images/aardvark.gif"); background-repeat: repeat-y; } ...