Bonsoir,
Comment obtenir dans une div
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21 <div id="contenuDroite"> Un titre <h2>Projet</h2> Un texte <p>Préparé ;;;;; </p> Un titre avec un fond différent <div class="texte-1"> <h3>Le 30 Mars 2010</h3> Un texte avec des puces qui senroule autour de limage <p><strong>SORTIE SURPRISE</strong></p> <ul> <li>Inscription :,,,, </li> </ul> Et l image <p><img src=".jpg" alt="" width="200" height="300" /></p> </div> </div>Merci pour votre aide.
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32 #contenudroite { position:absolute; margin-top: 14%; width:68%; margin-left: 21.5%; margin-bottom: 0; padding: 10px 20px; color: #363B29; background: #cbd888; text-align: justify; z-index:5; } .texte-1 { margin: 0 0 1.2em 0; background: #eee; color: #555; text-align: justify; border: 1px solid blue; } h1, h2 { padding:.5em .1em .5em .1em; color: #FF0000; } h3 { color: #FFFFFF; border: 5px; background-color: #959500; background: #959500 url(../Outils/Menu/Titre.png); }
Salutations
Partager