Bonjour / Bonsoir,
Voici donc ce que j'ai fais:
Et se que je souhaites faire, c'est de poursuivre le background de la partie central jusqu'au footer:
Mon code html:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | <!DOCTYPE html> <html lang="fr"> <head> <title>Title</title> <meta charset="utf-8"> <link rel="stylesheet" href="../style/all.css"> </head> <body> <div id="background"></div> <div id="wrap"> <div id="container"> <?php require_once '../assets/header.inc.php'; ?> <section> <h3><?php echo $TITLE; ?></h3> <?php require_once '../assets/nav.inc.php'; ?> <article id="content"> <?php echo $CONTENT; ?> </article> </section> </div> </div> <?php require_once '../assets/footer.inc.php'; ?> </body> </html> |
Mon code CSS:
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 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 | /* GENERAL */ html, body{ height:100%; background: url("../assets/fond.png"); background-repeat:repeat; min-width:1100px; } body, h1, p, ul, h3{ margin: 0; padding: 0; } ul{ box-sizing: border-box; } #container { width: 100%; height:100%; } #wrap{ min-height: 100%; } /* HEADER */ header{ background-color:rgb(70,70,150); text-align:center; padding:15px; color:white; } /* ACCESS */ #access{ background-color:rgb(200,200,200); text-align:center; border-bottom:1px solid rgb(170,170,170); } #access ul{ list-style-type:none; width:1100px; margin:auto; } #access li{ display:inline-block; background-color:blue; text-align:center; width:25%; } #access li a{ color:white; background-color:rgb(90,90,170); display:block; padding:3px 0 3px 0; text-decoration:none; } #access li a:hover{ background-color:rgb(70,70,150); text-decoration:underline; } /* SECTION */ section{ margin:auto; width:1100px; background-color:rgb(250,250,250); background-color:rgba(200,200,200, 0.5); height:100%; padding-bottom:40px; } section h3{ text-align:center; background-color: rgb(200,200,200); padding:5px; } /* NAV */ nav{ width:200px; float:left; } nav ul{ list-style-type:none; } nav ul li a{ padding:5px 0 5px 20px; display:block; color:black; } nav ul li a:hover{ background-color:rgb(150,150,150); } /* ARTICLE */ article{ width:900px; padding: 10px 10px 10px 210px; } article h3{ text-align:center; } /* FOOTER */ footer{ background-color:rgb(90,90,170); color:white; position: relative; margin-top: -40px; clear:both; height: 40px; line-height:40px; padding:0 20px 0 20px; } footer p{ display:inline-block; width:33.1%; } footer p.center{ text-align: center; } footer p.right{ text-align: right; } |
(Je n'ai pas mis toutes les parties du HTML, dites moi si vous en avez besoin.)
En vous remerciant, WinXaito
+0
-0