Code HTML:
...
<h1> Tableaux : </h1>
<div class="mepParagraphes">
<table class="gauche">
CODE DU TABLEAU
</table>
<table class="droite">
CODE DU TABLEAU
</table>
</div>
<h1> Paragraphe : </h1>
<h3> Titre du paragraphe </h3>
<p> TEXTE DU PARAGRAPHE</p>
Code CSS:
.mepParagraphes
{
width : 820px;
margin-left : auto;
margin-right : auto;
position : relative;
height : 240px;
}
.gauche
{
position : absolute;
top : 0px;
left : 0px;
}
.droite
{
position : absolute;
bottom : 0px;
right : 0px;
}Pages: 1 2