blob: 6d36e6ab9fd99552853e545d77973f5dee04d262 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<!DOCTYPE html>
<html>
<head>
<title>Column rule thicker than gap</title>
<style>
.mc {
border-left: 31px solid;
margin-left: 35px;
height: 100px;
}
</style>
</head>
<body>
<p>There should be a filled rectangle below.</p>
<div class="mc"></div>
</body>
</html>
|