关于css中浮动float的最好理解
程序员文章站
2022-04-13 09:49:14
...
<!doctype html> <html> <head> <meta charset="utf-8"> <title>无标题文档</title> </head> <body> <div style="border:3px solid silver; width:300px;"> <div id="container" style="background-color: blue;"> <div style="float:left; background-color: green;">above</div> <div id="DIV" style="margin:30px 0; background-color:gold;">content</div> <div style="float:right; background-color: green;">below</div> </div> </div> <hr> <hr> <div style="border:3px solid silver; width:300px;"> <div id="container" style="background-color: blue;"> <div style="position:absolute; background-color: green;">above</div> <div id="DIV" style="margin:30px 0; background-color:gold;">content</div> <div style="position:absolute; background-color: green;">below</div> </div> </div> <hr> <hr> <div style="border:3px solid silver; width:300px;"> <div id="DIV1" style="margin-bottom:50px; background-color:gold;">above</div> <div id="Float" style="float:left; background-color: green; width:100%;">Float</div> <div id="DIV2" style="margin-top:50px; background-color:gold;">below</div> </div> </body> </html>
效果如下:
更多关于css中浮动float的最好理解相关文章请关注PHP中文网!
推荐阅读
-
html/css中float浮动的用法
-
关于CSS中浮动引发的特殊情况,“大坑”
-
关于DIV+CSS浮动问题的汇总[增加中]_html/css_WEB-ITnose
-
[js的乐趣]关于float浮动的理解(举例说明)
-
【Java Web】CSS中的浮动float
-
关于清除浮动的一些简单理解。_html/css_WEB-ITnose
-
关于清除浮动的一些简单理解。_html/css_WEB-ITnose
-
CSS学习笔记--CSS中定位的浮动float_html/css_WEB-ITnose
-
CSS中关于清除浮动几种方式的具体介绍
-
如何理解css中的float_html/css_WEB-ITnose