corrigé CSS 3 – une boite à bords arrondis

<html>

<head>
<style>
.bl {background: url(bl.png) bottom left no-repeat #82C02F; width:300px}
.br {background: url(br.png) bottom right no-repeat}
.tl {background: url(tl.png) top left no-repeat; width:300px}
.tr {background: url(tr.png) top right no-repeat;
	padding:20px;
	color: #FFFFFF
	}

.bord {border-top-image: url(bl.png);
		color:#FF0000}

</style>
</head>

<body>

<div class="bl">
<div class="br">
<div class="tl">
<div class="tr">

du texte du texte  <BR>
du texte du texte  <BR>
du texte du texte  <BR>
du texte du texte  <BR>

</div>
</div>
</div>
</div>

</body>
</html>