-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtranspBorders
More file actions
34 lines (30 loc) · 835 Bytes
/
Copy pathtranspBorders
File metadata and controls
34 lines (30 loc) · 835 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Semi transparent borders</title>
<style>
body {
background: url("wood-9.jpg") center center no-repeat;
background-position: contain;
}
div {
max-width: 30%;
margin: 2rem auto 0;
color: #ccc;
font: 120% 150% "Helvetica neue", Helvetica, sans-serif;
background-color: #fff;
padding: 2em;
border: 10px solid rgba(250, 250, 250, .5);
background-clip: padding-box;
}
</style>
</head>
<body>
<div class="semiTransparent">
A semi transparent border.
</div>
</body>
</html>