gpt4 book ai didi

css float 对问题

转载 作者:太空宇宙 更新时间:2023-11-03 21:51:00 24 4
gpt4 key购买 nike

我有一个 <div>称为 wrapper其中包含 2 个其他 <div>我们叫 textboxcheckbox .

我希望能够将黄色框放入 wrapper 中。粉色框用作输入文本字段,黄色框用作复选框。

Here the jsfiddle

我尝试了我能想到的一切,例如 float: right但它只是将黄色框推到外面

enter image description here

<html>
<head>
<title>Page</title>
<script type="text/javascript" src="jquery-1.9.1.min.js"></script>
<style type="text/css">
.box {
background-color: #008DEF;
color: #9C5A3C;
height:100px;
width:260px;
position: relative; top:70px;
}
.textbox
{
background-color: #FF58C3;
height:90px;
width:170px;
}
.checkbox
{
background-color: #FFAB24;
height:50px;
width:50px;
float:right;
}
</style>
<div class="box">
<div class="textbox"> </div>
<div class="checkbox"> </div>
</div>


</div>




</body>
</html>

最佳答案

尝试将 float:left 添加到 .textbox 类

FIDDLE

关于css float 对问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17388856/

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