blob: a51c24f9ca31fba7f6c4de9b98aab87c3567988d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<!doctype html>
<html>
<head>
<title>Test the border transparency</title>
<style>
div {
width: 100px;
height: 100px;
border: 15px solid rgba(0,0,255,0.5);
border-radius: 15px;
position: absolute;
left: 50px;
top: 50px;
}
</style>
</head>
<body>
<div></div>
</body>
</html>
|