dkdenz
New member
Sehr simpel aber effektvoll:
Dreifarbiger Rahmen um Ebenen.
HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=iso-8859-1">
<title>3border</title>
<style type="text/css">
div.schwarz
{
width:100%;
height:100%;
border:4px solid #000;
}
div.rot
{
width:100%;
height:100%;
border:4px solid #ff0000;
}
div.gelb
{
width:100%;
height:100%;
border:4px solid #ffd700;
}
</style>
</head>
<body>
<div class="schwarz">
<div class="rot">
<div class="gelb">
</div>
</div>
</div>
</body>
</html>