分享web开发知识

注册/登录|最近发布|今日推荐

主页 IT知识网页技术软件开发前端开发代码编程运营维护技术分享教程案例
当前位置:首页 > 技术分享

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

发布时间:2023-09-06 01:52责任编辑:沈小雨关键词:CSSHTML

背景属性:

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背景属性

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

知识推荐

我的编程学习网——分享web前端后端开发技术知识。 垃圾信息处理邮箱 tousu563@163.com 网站地图
icp备案号 闽ICP备2023006418号-8 不良信息举报平台 互联网安全管理备案 Copyright 2023 www.wodecom.cn All Rights Reserved