<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>