11.CSS背景
①设置背景颜色(颜色值通常可以用十六进制(如#000000)或者颜色名称(如red)来表示)
属性:background-color
例:
body {
background-color:#b0c4de;
}
②背景图像
属性:background-image
例:
body {
background-image:url('https://static.runoob.com/images/mix/paper.gif');
}
③设置图片平铺
属性:background-repeat
例:
body
{
background-image:url('https://static.runoob.com/images/mix/gradient2.png');
background-repeat:repeat-x; //只在水平方向平铺
}
body
{
background-image:url('https://static.runoob.com/images/mix/gradient2.png');
background-repeat:repeat-y; //只在垂直方向平铺
}
body
{
background-image:url('https://static.runoob.com/images/mix/gradient2.png');
background-repeat:no-repeat; //防止图片平铺
}④改变图片在背景中的位置
属性:background-position
例:
body
{
background-image:url('1.png');
background-repeat:no-repeat;
background-position:right top;
}⑤背景图像是否固定
(
scroll:背景图片随着页面的滚动而滚动(默认)
fixed:背景图片不会随着页面的滚动而滚动。
local:背景图片会随着元素内容的滚动而滚动
)
例:属性:background-attachmentbody{
background-image:url('1.gif');
background-repeat:no-repeat;
background-attachment:fixed;
}

提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
Numpy基础(二)
Numpy索引
数组 NumPy Python -
CSS基础学习
CSS基础讲解,包含基本样式,属性,实际操作
css 学习 前端 html CSS -
学习css 二
1.2 跟css有关的标记,指令1.
css stylesheet import printing 浏览器 -
CSS基础学习总结
1.标准文档流2.块级标签和行级标签 块级标签 div、form、p、h1等 行级标签 span
css 标签 清除浮动 文档流 绝对定位 -
前端基础学习css
html, css
css 前端 基础学习 -
CSS学习总结二
CSS的学习告一段落,对于CSS知识点做了第二次总结概括,更加清晰了,很期待将来大量运用中对其更加深刻的理解.
Web javascript css XML Ajax -
CSS学习---css基础知识0105
CSS学习---css基础知识
Css学习 html 选择器 css