sublime做的:
<html>
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
.main{
margin: 0 auto;
width: 810px;
height: 200px;
background-color: darkgray;
}
.left{
width: 200px;
background-color: red;
float: left;
height: 200px;
}
.right{
width: 600px;
height: 200px;
background-color: blue;
float: right;
}
</style>
</head>
<body>
<div class="main">
<div calss="left">left</div>
<div class="right">right</div>
</div>
</body>
</html>
Hbuilder做的
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>title</title>
<style>
.main{
margin: 0 auto;
width: 810px;
height: 200px;
background-color: darkgray;
}
.left{
width: 200px;
background-color: red;
float: left;
height: 200px;
}
.right{
width: 600px;
float: right;
background-color: blue;
height: 200px;
}
</style>
</head>
<body>
<div class="main">
<div class="left">left</div>
<div class="right">right</div>
</div>
</body>
</html>
效果:
qq_青枣工作室_0