gpt4 book ai didi

html - 在 div 之外制作 "Close"按钮

转载 作者:技术小花猫 更新时间:2023-10-29 11:54:27 26 4
gpt4 key购买 nike

我的登录按钮有点超出了 div 的边界,但是当我尝试在代码中使其相同时,它不起作用。

.closeWindow{
float: right;
margin-left: 15px; /* width of the close button / 2 */
margin-bottom: 15px; /* height of the close button / 2 */
}

我想把它放在哪里(小图片关闭按钮): where it supposed to be placed

实际放置的位置: where it actually placed, using the css code that I wrote.

最佳答案

不要使用 float

而不是在你的容器 div 中使用

position :relative;

并在关闭框 div 中使用这些样式

position: absolute;
top: -15px;
right: -15px;

(假设您的关闭按钮是 30x30)

关于html - 在 div 之外制作 "Close"按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24146708/

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