浮动,清除浮动

Original 2019-03-08 10:58:35 220
abstract:<!DOCTYPE html><html><head><meta charset="UTF-8"><title>Document浮动</title></head><style type="text/css">.pent{width: 50px;height: 80

<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<title>Document浮动</title>

</head>

<style type="text/css">

.pent{

width: 50px;height: 80px;background: red;float: left;


}

.mat{


width: 60px;height: 30px; float: left;background: #0000FF;

}

.fen{ 

width: 130px; height: 20px;background: #000000;

}

.cent{

clear: both;

}

</style>

<body>

<div>1</div>

<div>2</div>

<div class="fen cent">3</div>

</body>

</html>


Correcting teacher:天蓬老师Correction time:2019-03-08 14:23:42
Teacher's summary:感觉你的作业太随意了吧, 下次多写的, 不要这样

Release Notes

Popular Entries