css 浮动
float属性:
Left |
元素向左浮动 |
Right |
元素向右浮动 |
None |
默认值。元素不浮动,并会显示在其文本中出现的位置 |
实例:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style type="text/css">
.a{
background-color: red;
width: 150px;
height: 150px;
}
.b{
background-color: green;
width: 150px;
height: 150px;
float: right;
}
</style>
<title></title>
</head>
<body>
<div class="a"></div><div class="b"></div>
</body>
</html>