abstract:<html> <head> <meta charser="utf-8";> <title>css中文的浮动</title> <link rel="shortcut icon" type="image/x-icon" href="images/favicon.
<html>
<head>
<meta charser="utf-8";>
<title>css中文的浮动</title>
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.con">
<style type="text/css">
ul{
position:relative;
left:200px;
border-color:red;
}
ul li{
list-style:none;
width:100px;
height:40px;
line-height: 40px;
text-align:center;
background-color: #ccc;
margin:0px 1px;
float:left;
}
.main{
width:100px;
height:50px;
background-color:green;
float:right;
}
.pos{
position:relative;
top:-40px;
}
.clear{
clear:left;
}
</style>
</head>
<body>
<ul>
<li>html</li>
<li>css</li>
<li>javascript</li>
<li>jquery</li>
<li>php</li>
</ul>
<div class="pos">
<div class="clear"></div>
<div class="main">div1</div>
<div class="main">div2</div>
<div class="main">div3</div>
</div>
<body>
</html>