mirror of
https://github.com/servo/servo
synced 2026-05-12 09:56:50 +02:00
23 lines
424 B
HTML
23 lines
424 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>CSS Background Test Reference</title>
|
|
<link rel="author" title="schenney" href="mailto:schenney@chromium.org">
|
|
<style>
|
|
span {
|
|
background-color: green;
|
|
display: inline-block;
|
|
height: 60px;
|
|
width: 60px;
|
|
border: 5px solid green;
|
|
border-radius: 5px;
|
|
box-sizing: border-box;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<span></span>
|
|
</body>
|
|
</html>
|