blob: b860304f04fe22498eb5b43d9de00d7e261353bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<!doctype html>
<title>CSS Test Reference</title>
<link rel="author" href="mailto:emilio@crisal.io" title="Emilio Cobos Álvarez">
<style>
body, html {
margin: 0;
padding: 0;
background: green;
}
.purple-square {
background: purple;
width: 50px;
height: 50px;
}
</style>
<div class="purple-square"></div>
|