1 Star 0 Fork 0

qianlanggong/h5+c3作业库

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
back-origin-clip的使用.html 1.66 KB
一键复制 编辑 原始数据 按行查看 历史
qianlanggong 提交于 2022-10-25 02:23 . back-origin-clip和文字特效
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>box-sizing的使用</title>
<style>
.main .box {
background-color: #ffeaa7;
width: 100px;
height: 100px;
margin: 10px;
padding: 10px;
border: 10px dotted #48dbfb;
display: inline-block;
background-image: url(images/02.png);
background-size: 40px;
background-repeat: no-repeat;
}
.main .box:nth-of-type(1) {
background-origin: border-box;
background-clip: border-box;
}
.main .box:nth-of-type(2) {
/* 默认值 */
/* 更改背景图片的原点 */
background-origin: padding-box;
/* 默认值 */
/* 裁切背景图片 */
background-clip: border-box;
}
.main .box:nth-of-type(3) {
background-origin: content-box;
background-clip: content-box;
}
.main .box:nth-of-type(4) {
background-origin: border-box;
background-clip: border-box;
}
.main .box:nth-of-type(5) {
background-origin: border-box;
background-clip: padding-box;
}
.main .box:nth-of-type(6) {
background-origin: border-box;
background-clip: content-box;
}
</style>
</head>
<body>
<div class="main">
<!-- background-origin的使用,用于定义背景图片的原点位置 -->
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
<!-- background-clip的使用 -->
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
</div>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
HTML
1
https://gitee.com/civil-affairs/h5-c3.git
git@gitee.com:civil-affairs/h5-c3.git
civil-affairs
h5-c3
h5+c3作业库
master

搜索帮助