blob: a5e44e7398dc962ccb93408247b119c84a46ba28 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<!doctype html>
<meta charset="utf-8">
<title>CSS Test Reference</title>
<style>
#target {
margin: 30px;
height: 40px;
width: 40px;
background-color: lime;
border-radius: 5px;
}
</style>
<div id="target"></div>
|