x
 
1
<!DOCTYPE html>
2
<title>My Example</title>
3
<style>
4
    .box {
5
        color: orange;
6
        font-size: 5vw;
7
        padding: 10vw;
8
        margin: 5vw;
9
        border-style: solid;
10
    }
11
</style>
12
13
<div class="box">Price is what you pay. Value is what you get.</div>
14
15
<p>Notice that the border uses the text color if its color hasn't been explicity set.</p>