.profile-bg { background-color: transparent; background: url("../images/profile.jpg"); position: absolute; background-clip: border-box; background-attachment: scroll; background-origin: padding-box; background-repeat: no-repeat; left: 0px; top: 0px; height: 100%; z-index: 2; background-size: cover; background-position: -40px center, 0px center; width: 45%; border-right: 4px solid #16C1E2; }
时间: 2024-04-27 15:19:35 浏览: 143
vue-quasar-company-profile-website:Kudos - 使用 Vue.js 和 Quasar Framework 制作的公司简介网站
这是一个 CSS 样式表的代码段,其中包含了对一个叫做 ".profile-bg" 的元素的样式定义。这个元素的背景有两个来源,一个是一张图片,另一个是透明的背景色。这个元素的位置是绝对定位,宽度为 45%,高度为 100%。背景图片的大小是 cover,位置是 -40px center 和 0px center。这个元素还有一个右边框,宽度为 4px,颜色为 #16C1E2。
阅读全文