overflow:hidden;
}
.left {
width:100px;
height:100px;
border:1px dashed blue;
float:left;
}
.right {
width:100px;
height:100px;
border:1px dashed green;
float:right;
}
</style>
</head>
<body>
<div class=”content”>
<div class=”left”></div>
<div class=”right”></div>
</div>
</body>
</html>










