gpt4 book ai didi

css - 使用 px 值相对于右下角定位背景

转载 作者:行者123 更新时间:2023-11-28 18:45:34 25 4
gpt4 key购买 nike

我想将 background-image 放置在距右侧和底部一定距离的位置。
我不想使用 right borrom,因为它会把它放在 Angular 落里,并且 % 或距离 left top 会阻止我的设计响应。
有没有 CSS 解决方案?

最佳答案

是的,您可以使用 calc.

尝试类似的操作

.wrapper {
background-image: url(http://www.bcebhagalpur.ac.in/images/Facebook.png);
background-repeat: no-repeat;
background-position: calc(100% - 40px) calc(100% - 40px);
height: 300px;
width: 50%;
background-color: #DDD;
}
<div class="wrapper">
<p>Lorem Ipsum Dolor set amet etc etc etc etc .....</p>
</div>

或者你可以只用 4 边定位来完成:

.wrapper {
background-image: url(http://www.bcebhagalpur.ac.in/images/Facebook.png);
background-repeat: no-repeat;
background-position: right 40px bottom 40px;
height: 300px;
width: 50%;
background-color: #DDD;
}
<div class="wrapper">
<p>Lorem Ipsum Dolor set amet etc etc etc etc .....</p>
</div>

关于css - 使用 px 值相对于右下角定位背景,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10599647/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com