Nous pouvons définir une image comme image de fond d'un <div>similaire:
<style>
#test {
background-image: url(./images/grad.gif);
background-repeat: no-repeat;
background-position: center center;
width:80%;
margin-left:10%;
height:200px;
background-color:blue;
}
</style>
<div id="test"></div>
J'ai besoin de mettre une table au centre d'un <div>horizontalement et verticalement. Existe-t-il une solution multi-navigateurs CSS?