Get your own website Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html>
<head>
<style>
#myDIV { 
  border: 10px dotted black;
  padding: 15px;
  background: lightblue;
  background-clip: border-box;  
}
</style>
</head>
<body>
<h1>The background-clip Property</h1>
<div id="myDIV">
  <p>
    <em>Content goes here.</em>
  </p>
</div>
</body>
</html>