mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
15 lines
203 B
HTML
15 lines
203 B
HTML
<html>
|
|
<head>
|
|
<style>
|
|
.a {
|
|
border-top: 40px solid blue;
|
|
border-bottom: 20px dashed green;
|
|
background: green;
|
|
width: 200px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="a"></div>
|
|
</body> </html>
|