x
 
1
<!DOCTYPE html>
2
<title>My Example</title>
3
<style>
4
    body {
5
        background-image: url('/pix/samples/bg2.png');
6
    }
7
    .box {
8
        opacity: .5;
9
        background-color: orange;
10
        font-size: 5vw;
11
        padding: 10vw;
12
        margin: 5vw;
13
        border: solid;
14
    }
15
</style>
16
17
<div class="box">This box is half transparent.</div>