1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
| <style type="text/css">
div {
width: 95%;
padding: 10px;
background: #ccc;
border: solid 1px black;
margin-left:auto;
margin-right:auto;
}
div.arrondi {
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
border-radius: 10px;
}
</style>
<!--[if lte IE 8]><script type="text/javascript" src="roundies.js"></script><![endif]-->
<script type="text/javascript">
DD_roundies.addRule('div.arrondi', '10px');
</script>
.....
<div class="arrondi" style="background-color:#e7e8ed;">
..... |