码迷,mamicode.com
首页 > Web开发 > 详细

1、HTML+DIV+CSS零基础快速入门到制作企业站视频课程_15 css背景属性

时间:2018-05-05 16:49:48      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:top n   mode   type   isa   bsp   内容   nbsp   fixed   制作   

 

背景属性:

background-color 背景颜色

background-image 背景图片

 

背景重复:

background-repeat: repeat/no-repeat/repeat-x/repeat-y

 

背景位置:background-position:

position: x y:

? 像素:100px 100px

? 百分比:10% 20%: (容器宽度-图片宽度)*10%

? left center right, top center bottom;

? -100px,0px

 

background-attachment: 背景跟随内容滚动或者固定

background-attachment:fixed;

background-attachment:scroll;

 

复合写法:

background: url("./img/2.jpg") center top no-repeat scroll;

 

技术分享图片

 

.html

 

 1 <!DOCTYPE html>
 2 <html lang="en">
 3 <head>
 4     <meta charset="UTF-8">
 5     <title>背景2</title>
 6     <link rel="stylesheet" href="./bg2.css">
 7 </head>
 8 <body style="height: 2000px;">
 9     <p>0</p>
10     <p>1</p>
11 </body>
12 </html>

 

.css

 

body {
background: #fff url("http://real2.s-angels.com/images/sample/m254_misa/thumb/model_top.jpg") center top no-repeat fixed;
}

 

1、HTML+DIV+CSS零基础快速入门到制作企业站视频课程_15 css背景属性

标签:top n   mode   type   isa   bsp   内容   nbsp   fixed   制作   

原文地址:https://www.cnblogs.com/denggelin/p/8995022.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!