/*最外层div的样式*/
.div1{
border:1px solid red;
width:500px;
height:300px;
}
/*里层div的样式*/
.div2{
border:1px solid blue;
width:150px;
height:100px;
margin-top:5px;
}
/*id选择器*/
#id1{
float:right; /*右浮动*/
}
<!--浮动的案例-->
<html>
<head>
<link rel="stylesheet" type="text/css" href="float.css"/>
</head>
<body>
<div class="div1">
<div class="div2" id="id1">div1</div>
<div class="div2">div2</div>
<div class="div2">div3</div>
</div>
</body>
</html>