Files
rust_browser/tests/goldens/fixtures/120-float-mixed-left-right.html
Zachary D. Rowitsch 2e6e220235 Implement CSS float layout (float, clear, BFC containment)
Add layout behavior for float: left/right with FloatContext tracking,
clear property support, shrink-to-fit width, block-level float avoidance,
float-aware inline line breaking, and BFC height expansion for
overflow:hidden containers. Includes 20 golden tests and comprehensive
unit/parser tests.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-06 00:51:09 -05:00

27 lines
432 B
HTML

<html>
<head>
<style>
.float-left {
float: left;
width: 150px;
height: 60px;
background-color: #ff0000;
}
.float-right {
float: right;
width: 150px;
height: 60px;
background-color: #0000ff;
}
p {
background-color: #00ff00;
}
</style>
</head>
<body>
<div class="float-left"></div>
<div class="float-right"></div>
<p>Text between left and right floats wraps in the middle space</p>
</body>
</html>