blob: cd4681c3a28c7597db133f4ee8f32599a1c9079d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<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>
|