css中clear属性是什么

说明

1、用于规定元素哪一侧不允许浮动元素,默认值为none,表示不清除,左右两侧允许浮动元素。

2、确保当前元素的左右两侧没有浮动元素。clear只对元素本身的布局起作用。

可选值

left清除左侧浮动元素对当前元素的影响

right清除右侧浮动元素对当前元素的影响

both清除左/右两侧浮动元素对当前元素的影响

实例

<!DOCTYPEhtml>
<html>
<head>
<metacharset="UTF-8">
<metaname="viewport"content="width=device-width,initial-scale=1.0">
<metahttp-equiv="X-UA-Compatible"content="ie=edge">
<title>clear属性</title>
<style>
.box1{
width:200px;
height:200px;
background-color:cadetblue;
/*设置向左浮动*/
float:left;

}

.box2{
width:400px;
height:400px;
background-color:crimson;
float:right;

}

.box3{
width:200px;
height:200px;
background-color:chartreuse;
/*设置clear属性:使其位置不受左侧浮动元素的影响*/
/*clear:left;*/
/*设置clear属性:使其位置不受右侧浮动元素的影响*/
/*clear:right;*/
/*clear:both;*/
}

</style>
</head>
<body>
<div>1</div>
<div>2</div>
<div>3</div>
</body>
</html>

以上就是css中clear属性的介绍,希望对大家有所帮助。更多css学习指路:css教程

原文来自:https://www.py.cn
© 版权声明
THE END
喜欢就支持一下吧
点赞7 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容