blob: 3350983bf5a660619cdd2482ac458f4cde251be1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
Title: Multiple floated items are clearing when they shouldn't
Author: campaul
Created: Mon, 02 Jun 2025 17:38:09 +0000
State: open
Given the following example:
```html
<html>
<head>
<style type="text/css">
div {
width: 100px;
height: 100px;
margin: 10px;
border: 5px solid black;
float: left;
}
</style>
</head>
<body>
<div>A</div>
<div>B</div>
</body>
</html>
```
## Expected Result (taken from Firefox)

## Actual Result

|