0

我有一个<div>被调用wrapper,其中包含另外 2 个<div>被调用的textboxcheckbox

我希望能够让黄色盒子进入包装器。粉色框用作输入文本字段,黄色框用作复选框。

这里是jsfiddle

我尝试了我能想到的一切,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>
4

1 回答 1

4

尝试添加float:left到 .textbox 类

小提琴

于 2013-06-30T09:15:27.150 回答