📅  最后修改于: 2023-12-03 15:01:12.778000             🧑  作者: Mango
在 HTML | DOM 中,cssFloat 属性用于设置一个元素的浮动方向(左、右、无)。
element.style.cssFloat = "left|right|none";
某些浏览器不支持 "cssFloat" 属性,而是支持 "styleFloat" 属性。
element.style.styleFloat = "left|right|none";
HTML 代码:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>cssFloat 属性</title>
<style>
.div1 {
float:left;
background-color:#99c2ff;
}
.div2 {
float:right;
background-color:#ff9966;
}
</style>
</head>
<body>
<h2>使用 cssFloat 属性将两个 div 元素向左和向右浮动</h2>
<div class="div1">This is div1 - 一个左浮动的 div 元素。</div>
<div class="div2">This is div2 - 一个右浮动的 div 元素。</div>
</body>
</html>
输出结果:
.clearfix:after {
content:"";
display:table;
clear:both;
}