控制两个div不换行
<html>
<head>
<style type="text/css">
#row1 { float: left; width:90px; }
#row2 { color: red }
</style>
</head>
<body>
<div id="row1">第一个div</div>
<div id="row2">第二个div不换行</div>
</body>
</html>
<head>
<style type="text/css">
#row1 { float: left; width:90px; }
#row2 { color: red }
</style>
</head>
<body>
<div id="row1">第一个div</div>
<div id="row2">第二个div不换行</div>
</body>
</html>