blob: 15b194822640f68e0a0c61ad52dff1ea9e3fe6ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<!DOCTYPE html>
<html>
<head>
<title>CSS Borders: border-top-width: 1px, reference</title>
<style>
div { border-top-style: solid; border-top-width: 1px; }
</style>
</head>
<body>
<p>There should be a black line below and no red.</p>
<div></div>
</body>
</html>
|