mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-21 03:43:16 +09:00
18 lines
422 B
HTML
18 lines
422 B
HTML
<!DOCTYPE html>
|
|
<meta charset="utf-8">
|
|
<title>CSS Values and Units Test Reference File</title>
|
|
<link rel="author" title="Florian Rivoal" href="http://florian.rivoal.net/">
|
|
<meta name="flags" content="">
|
|
<style>
|
|
div {
|
|
background: green;
|
|
height: 10ch;
|
|
width: 10ch;
|
|
float: left;
|
|
}
|
|
|
|
</style>
|
|
<body>
|
|
<p>Test passes if there is a <strong>filled green square</strong> and <strong>no red</strong>.</p>
|
|
<div></div>
|
|
</body>
|