Bonjour,
Je voudrais limiter la largeur de la troisième colonne d'un tableau mais le CSS concerné n'est pas pris en compte. Il n’apparaît pas dans le débogueur.
Code html : 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64 <!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title>Genealium - Votre généalogie en ligne</title> <base href="http://genealium.proginet.local/" /> <link rel="stylesheet" media="all" type="text/css" href="css/structure.css" /> <!-- Dimensions et positions --> <link rel="stylesheet" media="screen" type="text/css" href="css/style0.css" /> <!-- Apparence --> <!-- <link rel="stylesheet" media="print" type="text/css" href="css/print.css" /> --> <!-- Documents imprimés --> <link rel="stylesheet" type="text/css" href="css/default_blue.css" /> <!-- Calendrier --> </head> <body> <section id="main"> <div id="left"> <nav> <!-- menu --> </nav> </div> <article id="right"> <!-- suite --> <form method="post" action="http://genealium.proginet.local/parentPage.php?childPageKey=11&stage=3" enctype="multipart/form-data" class="L"> <label for="id">Clef à modifier</label> <input type="text" name="id" id="id" value="18" readonly /><br/> <table class="request"> <thead> <tr> <th><label></label><span class='existingTitle'>Vos informations</span></th> <th><span class='existingTitle'>Source / fiabilité</span></th> <th><span class='existingTitle'>Valeurs actuelles</span></th> </tr> </thead> <tbody> <tr> <td><label for='author'>Auteur</label><input type='text' name='author' id='author' /></td> <td></td> <td><span class='existingData'>Marc Paris</span></td> </tr> <tr> <td><label for='sources'>Sources</label><textarea name='sources' id='sources' cols='40' placeholder='Indiquer ici les sources qui vous ont permis d'écrire cette biographie (mémoire familiale, article de presse ou sur Internet, etc.)'></textarea></td> <td></td> <td><span class='existingData'>Profil inventé pour la version démo</span></td> </tr> <tr> <td><label for='text'>Biographie</label><textarea name='text' id='text' cols='40' placeholder='Emplacement réservé pour une courte biographie (10 lignes environ)'></textarea></td> <td></td> <td><span class='existingData'>Amédée était illettré mais ouvert. Ceci lui a permis d'être à l'écoute de l'instituteur de son fils...</span></td> </tr> </tbody> </table> <p><input type="submit" name="next" value="Suivant" /></p> </form> <!-- suite --> </body> </html>
Code css : 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 /*Code précédent*/ /* Page updateQuery.php */ .existingData { /* code pris en compte */ vertical-align:top; font-size:.8rem; opacity:0.7; } .existingTitle { /* code pris en compte */ padding:2px 5px; font-size:0.8rem; text-decoration:underline; background-color:rgba(80,80,0,0.8); text-align:center; } .request td :nth-child (3) { /* code NON pris en compte */ max-width:200px; } /* Code suivant */
Partager