<!doctype html>
<title>Example</title>
<style>
div {
background: gold;
padding: 20px;
}
p {
text-align: justify;
margin-right: 30vw;
font-size: 4vw;
</style>
<div>
<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>
</div>