gpt4 book ai didi

HTML、CSS 将 div 放在相对元素的左侧而不是右侧

转载 作者:行者123 更新时间:2023-11-28 04:00:51 25 4
gpt4 key购买 nike

我有这段代码:

#wrap {
position: relative;
width: auto;
background: silver;
border: 1px solid grey;
}

#text {
position: absolute;
width: 25%;
right: 0;
top: 0;
bottom: 0;
background: black;
opacity: 0.5;
filter: alpha(opacity=50);
}
<div>
<div id="wrap">
<img class="fit-img" src="~/Content/img/Assets/image.jpg">
<div id="text"></div>
</div>
</div>

我需要将 ID 为 text 的 DIV 放在左侧,而不是包装内容的右侧。有什么建议吗?

最佳答案

只需删除 right: 0; 并将其替换为 left: 0; :

#text {
position: absolute;
width: 25%;
left: 0;
top: 0;
bottom: 0;
background: black;
opacity: 0.5;
filter: alpha(opacity=50);
}

关于HTML、CSS 将 div 放在相对元素的左侧而不是右侧,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43215651/

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