Exercice HTML corrigé rendu avec CSS

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;
 }

Télécharger aussi :

Laisser un commentaire

Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *