1
<!doctype html>
2
<title>Example</title>
3
<style>
4
  div { 
5
    background: gold; 
6
    padding: 20px; 
7
  }
8
  p {
9
    text-align: justify;
10
    margin-right: 30vw;
11
    font-size: 4vw;
12
  }
13
</style>
14
<div>
15
<p>This text has had its right margin set to <code>30vw</code>. The result is that the margin pushes it away from the right edge of its containing box by the value of the margin.</p>
16
</div>