Source Code: (back to article)
<!DOCTYPE html>
<html>
<head>
<style>
h2 {
padding: 5px;
border-bottom-style: ridge;
border-bottom-width: 20px thin;
}
div {
padding: 5px;
border-style: ridge;
border-bottom-width: 20px;
}
</style>
</head>
<body>
<h2>Eine Überschrift mit 20px dünnem unteren Rand</h2>
<div>Ein div-Element mit 20px dickem unteren Rand.</div>
</body>
</html>