1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-10-28 23:12:06 +00:00
serenity/Base/res/html/misc/float-2.html
Andreas Kling 2b8c7faee4 LibWeb: Use the margin box of floating elements for flowing around
Inline content flows around the entire margin box of floating elements,
not just the content box.
2020-12-12 19:59:24 +01:00

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>