background示例一
Posted kukai
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了background示例一相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<style>
div {
margin: 0px;
padding: 0px;
}
div.box{
width: 300px;
height: 300px;
border:10px double red;
padding:10px;
/* 设置背景图片 */
background-image:url("./source/img/1.jpg");
/* 设置背景颜色 */
background-color:aqua;
/* 设置背景图片大小 */
background-size:100px auto;
/* 设置背景图片是否重复 */
background-repeat: no-repeat;
/* 设置背景图片的位置 两位参数x轴 y轴 */
background-position: 10px 0px;
/* 从内边距处开始计算原点 */
background-origin:padding-box;
/* 设置背景范围 */
background-clip:content-box;
}
</style>
</head>
<body>
<div class="box"></div>
</body>
</html>
以上是关于background示例一的主要内容,如果未能解决你的问题,请参考以下文章
CSS或jquery中如何改变background-image的大小?
background-size:100% 100% 时 background-position: % 失效
CSSCSS 背景设置 ④ ( 超大背景图片设置 | 背景图片定位设置 background-position: center top; )
CSS盒子模型外边距 ③ ( 插入图片 | 插入图片位置移动 - 修改外边距 | 背景图片 | 背景图片移动位置 - 修改背景位置 background-position )