我有一个<div>
被调用wrapper
,其中包含另外 2 个<div>
被调用的textbox
和checkbox
。
我希望能够让黄色盒子进入包装器。粉色框用作输入文本字段,黄色框用作复选框。
我尝试了我能想到的一切,float: right
但它只是把黄色盒子推到外面
<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>