大冬瓜1996

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>

posted on 2018-12-18 19:49  大冬瓜1996  阅读(93)  评论(0编辑  收藏  举报

导航