博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
三、CSS样式——背景
阅读量:4325 次
发布时间:2019-06-06

本文共 1083 字,大约阅读时间需要 3 分钟。

CSS背景

概念:CSS允许应用纯色作为背景,也允许使用背景图像创建相当复杂的效果。

属性 描述
background-attachment  背景图像是否固定或者随着页面的其余部分滚动
 background-color  设置元素的背景颜色
 background-image 把图片设置为背景 
 background-position 设置图片的起始位置 
 background-repeat

设置背景图片是否及如何重复 

background-size 规定背景图片的尺寸
 background-origin 规定背景图片的定位区域 
 background-clip 规定背景的绘制区域 

 

Title

test the background-color

test the background-color

test the background-color

test the background-color

test the background-color

test the background-color

test the background-color

test the background-color

test the background-color

test the background-color

test the background-color

/*style.css*/body{    /*background-color: khaki;*/    background-image: url("1.jpg");    background-repeat: no-repeat;   /*图片不允许重复*/    /*background-position: right top;*/    /*background-position: 100px 100px;*/    /*background-attachment: fixed;*/    background-size: 100px 100px;    /*right和center*/}p{
width: 150px; padding: 10px; background-color: blueviolet;}

 

转载于:https://www.cnblogs.com/gyqqqqq/p/10526932.html

你可能感兴趣的文章
SQL Server 数据库性能优化(转载)
查看>>
java ee课程目标
查看>>
Shell 脚本进程并发&进程数控制
查看>>
Java基础String类
查看>>
yum -y list java* 查看当前java的版本
查看>>
Linux创建用户
查看>>
github中markdown语言的使用规则
查看>>
clean-css 安装 使用
查看>>
Java设计模式(Design Patterns In Java)读书摘要——第1章 绪论
查看>>
Linux下Nginx安装
查看>>
LVM扩容之xfs文件系统
查看>>
Hbase记录-client访问zookeeper大量断开以及参数调优分析(转载)
查看>>
2010年ImagineCup,我们共同走过
查看>>
代码片段收集
查看>>
vue-cli3创建项目时报错
查看>>
输入1-53周,输出1-53周的开始时间和结束时间
查看>>
实验二
查看>>
shell——按指定列排序
查看>>
crash 收集
查看>>
Oracle数据库索引使用及索引失效总结
查看>>