1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
.les_blocs {
width:222px;
height:262px;
float:left;
padding: 10px;
color: #fff;
background: #000;
background: -webkit-gradient(linear, 0 0, 0 100%, from(#000) to(#f00));
background: -webkit-linear-gradient(#000, #f00);
background: -moz-linear-gradient(#000, #f00);
background: -ms-linear-gradient(#000, #f00);
background: -o-linear-gradient(#000, #f00);
background: linear-gradient(#000, #f00);
-pie-background: linear-gradient(#000, #f00);
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
border-radius: 10px;
behavior: url(PIE.php);
position:relative;
} |