mirror of
https://github.com/RGBCube/serenity
synced 2025-10-28 23:12:06 +00:00
Inline content flows around the entire margin box of floating elements, not just the content box.
17 lines
211 B
HTML
17 lines
211 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
#b {
|
|
border: 1px solid red;
|
|
width: 50px;
|
|
height: 50px;
|
|
float: left;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id=b></div>
|
|
<div id=a>Text</div>
|
|
</body>
|
|
</html>
|