mirror of
https://github.com/servo/servo.git
synced 2025-06-27 18:43:40 +01:00
24 lines
No EOL
434 B
HTML
24 lines
No EOL
434 B
HTML
<!DOCTYPE html>
|
|
<title>CSS Reference</title>
|
|
<link rel="author" title="Sergio Villar Senin" href="mailto:svillar@igalia.com" />
|
|
<style>
|
|
div {
|
|
background-color: green;
|
|
height: 50px;
|
|
width: 100px;
|
|
}
|
|
span {
|
|
display: inline-block;
|
|
background-color: green;
|
|
height: 50px;
|
|
width: 40px;
|
|
}
|
|
br { margin: 50px; }
|
|
</style>
|
|
|
|
<p>Test passes if there is <strong>no red</strong> visible on the page.</p>
|
|
<div></div>
|
|
|
|
<br>
|
|
|
|
<span></span> |