mirror of
https://github.com/servo/servo.git
synced 2025-07-01 12:33:40 +01:00
25 lines
490 B
HTML
25 lines
490 B
HTML
<!doctype html>
|
|
<html lang=en>
|
|
<meta charset=utf-8>
|
|
<title>CSS-contain test reference</title>
|
|
<link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net">
|
|
<meta name=flags content="">
|
|
|
|
<style>
|
|
article {
|
|
columns: 2 20px;
|
|
float: left;
|
|
height: 50px;
|
|
column-fill: auto;
|
|
}
|
|
article > div {
|
|
break-before: column;
|
|
border-top: 20px solid orange;
|
|
}
|
|
</style>
|
|
|
|
<p>Test passes if there are two orange boxes below.
|
|
<article>
|
|
<div></div>
|
|
<div></div>
|
|
</article>
|