gpt4 book ai didi

css - 定位 div,在另一个 div 之上,对齐 - 右

转载 作者:行者123 更新时间:2023-11-28 16:14:01 28 4
gpt4 key购买 nike

好的,在居中的 div 中有一个图像,它被放置在页面的中心。它的宽度是 400px。

我想要实现的是:

  • 放置另一个 div - 在该 div 内部,通过 CSS 正确对齐。

由于各种屏幕分辨率,我希望避免命令“top:, right:”。

如何实现?

<div class="non"><div class="info">Go top right</div><a href=""><img src="images/top.jpg"></a></div>

CSS..

.non { width:400px; background-color:#d20000;  }
.info { position:absolute;float:right; background-color:#efefef; }

Example here

最佳答案

只要这样做,它应该可以工作:

.non { width:400px; background-color:#d20000; position: relative; }
.info { position:absolute; top: 0px; right: 0px; background-color:#efefef; }

我知道你想避免使用 top 和 right,但如果你这样做,.info 类位于 .non 类 div 的右上角,而不是整个页面:)

关于css - 定位 div,在另一个 div 之上,对齐 - 右,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13113551/

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