Html, div, style et margin
Résolu/Fermé
santiago69
Messages postés
477
Date d'inscription
mercredi 7 mars 2001
Statut
Membre
Dernière intervention
12 septembre 2016
-
14 oct. 2008 à 17:40
santiago69 Messages postés 477 Date d'inscription mercredi 7 mars 2001 Statut Membre Dernière intervention 12 septembre 2016 - 20 oct. 2008 à 18:48
santiago69 Messages postés 477 Date d'inscription mercredi 7 mars 2001 Statut Membre Dernière intervention 12 septembre 2016 - 20 oct. 2008 à 18:48
A voir également:
- Html style margin
- Div margin - Meilleures réponses
- Html div style margin - Meilleures réponses
- Style word - Guide
- Editeur html - Télécharger - HTML
- Br html ✓ - Forum Webmastering
- ≪br> ou <br /> ou </br> ✓ - Forum Webmastering
- Nom pour facebook stylé - Guide
4 réponses
Stef60
Messages postés
251
Date d'inscription
jeudi 31 mai 2007
Statut
Membre
Dernière intervention
22 avril 2009
41
14 oct. 2008 à 18:58
14 oct. 2008 à 18:58
Bonjour,
tu cherches à faire ca:
<html>
<body>
<div style="width:200px ; height:200px ; background:red; position:absolute;">
<div style="margin-left:40px ; width:100px ; margin-top:40px ;height:100px ; background:green">
</div>
</div>
</body>
</html>
ou ca (plus jolie à mon gout)
<html>
<body style="margin:0 ; paddin:0 ;">
<div style="width:200px ; height:200px ; background:red; position:absolute;">
<div style="margin-left:40px ; width:100px ; margin-top:40px ;height:100px ; background:green">
</div>
</div>
</body>
</html>
tu cherches à faire ca:
<html>
<body>
<div style="width:200px ; height:200px ; background:red; position:absolute;">
<div style="margin-left:40px ; width:100px ; margin-top:40px ;height:100px ; background:green">
</div>
</div>
</body>
</html>
ou ca (plus jolie à mon gout)
<html>
<body style="margin:0 ; paddin:0 ;">
<div style="width:200px ; height:200px ; background:red; position:absolute;">
<div style="margin-left:40px ; width:100px ; margin-top:40px ;height:100px ; background:green">
</div>
</div>
</body>
</html>