gpt4 book ai didi

html - 如何使复选框覆盖方形容器的 100% 宽度和 100% 高度?

转载 作者:太空宇宙 更新时间:2023-11-04 09:35:45 24 4
gpt4 key购买 nike

我已经能够在动态大小(响应式)div 的顶部放置一个复选框,但现在我需要这样做,以便该复选框覆盖此 div 的 100% 宽度和 100% 高度。

这是我的代码笔:http://codepen.io/PiotrBerebecki/pen/yadEOP目前我只是暂时硬编码了复选框的宽度和高度。

HTML:

<div id="container">
<input type="checkbox">
<img src="http://placekitten.com/400/400">
</div>

CSS:

body {
display: flex;
flex-direction: column;
align-items: center;
}

#container {
width: 50%;
border: solid 4px tomato;
}

img {
display: block;
width: 100%;
height: auto;
}

input {
position: absolute;
width: 100px;
height: 100px;
opacity: 0.75;
}

最佳答案

首先您需要为复选框创建一个堆叠上下文,然后添加 100% 的宽度和高度。完成。

#container {
/*首先创建堆叠上下文*/
position:relative;
}

输入{
宽度:100%;
高度:100%;
}

完整示例:codepen

关于html - 如何使复选框覆盖方形容器的 100% 宽度和 100% 高度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40335241/

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