Source Code: (back to article)
<!DOCTYPE html>
<html>
<head>
<style>
div {
border: 8px dotted #ccc;
padding: 25px;
background: #ccc;
background-clip: padding-box;
}
</style>
</head>
<body>
<h2>Beispiel für die Eigenschaft background</h2>
<div>
<p>Background-clip in diesem Div-Element ist auf Padding-box eingestellt.</p>
</div>
</body>
</html>