Mise en place correcte du vertical-align
Reste à faire que tous le block soit cliquablemaster
parent
faa82e8274
commit
2179bf4b99
70
index.html
70
index.html
|
@ -15,47 +15,67 @@
|
|||
|
||||
<body>
|
||||
|
||||
<article id="accueil">
|
||||
<nav id="accueil">
|
||||
|
||||
<article class="entree">
|
||||
<ul id="main">
|
||||
|
||||
<li class="entree">
|
||||
<div class="wraptocenter">
|
||||
<a href="" title="">entrée 01 mais sur deux lignes ?</a>
|
||||
</div>
|
||||
</article>
|
||||
</li>
|
||||
|
||||
<article class="entree">
|
||||
<a href="#" title="">entrée 02</a>
|
||||
</article>
|
||||
<li class="entree">
|
||||
<div class="wraptocenter">
|
||||
<a href="#" title="">entrée spécialement alongée volontairement</a>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<article class="entree">
|
||||
<a href="" title="">entrée 03</a>
|
||||
</article>
|
||||
|
||||
<article class="entree">
|
||||
<li class="entree">
|
||||
<div class="wraptocenter">
|
||||
<a href="#" title="">entrée 04</a>
|
||||
</article>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<article class="entree">
|
||||
<a href="" title="">entrée 05</a>
|
||||
</article>
|
||||
<li class="entree">
|
||||
<div class="wraptocenter">
|
||||
<a href="#" title="">entrée 05</a>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<article class="entree">
|
||||
<li class="entree">
|
||||
<div class="wraptocenter">
|
||||
<a href="#" title="">entrée 06</a>
|
||||
</article>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<article class="entree">
|
||||
<li class="entree">
|
||||
<div class="wraptocenter">
|
||||
<a href="#" title="">entrée 07</a>
|
||||
</article>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<article class="entree">
|
||||
<a href="" title="">entrée 08</a>
|
||||
</article>
|
||||
<li class="entree">
|
||||
<div class="wraptocenter">
|
||||
<a href="#" title="">entrée 08</a>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<article class="entree">
|
||||
<li class="entree">
|
||||
<div class="wraptocenter">
|
||||
<a href="#" title="">entrée 09</a>
|
||||
</article>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
</article>
|
||||
<li class="entree">
|
||||
<div class="wraptocenter">
|
||||
<a href="#" title="">entrée 10</a>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
|
||||
</nav>
|
||||
|
||||
</body>
|
||||
|
||||
|
|
38
style.css
38
style.css
|
@ -10,31 +10,49 @@ body {
|
|||
}
|
||||
|
||||
#accueil {
|
||||
max-width: 66%;
|
||||
margin: 0px auto;
|
||||
width: 66%;
|
||||
max-width: 900px;
|
||||
margin: 1% auto;
|
||||
font-size: 175%;
|
||||
-moz-hyphens: auto;
|
||||
}
|
||||
|
||||
#main {
|
||||
list-style: none outside none;
|
||||
margin: 0px auto;
|
||||
padding: 1%;
|
||||
}
|
||||
|
||||
|
||||
.entree {
|
||||
display: inline;
|
||||
width: 8em;
|
||||
height: 8em;
|
||||
text-align: center;
|
||||
background-color: rgba(34, 34, 34, .8);
|
||||
color: rgba(231, 231, 231, .7);
|
||||
border-radius: 3px;
|
||||
margin: 2%;
|
||||
display: inline-block;
|
||||
margin: .5%;
|
||||
}
|
||||
|
||||
.wraptocenter {
|
||||
display: table-cell;
|
||||
vertical-align: middle;
|
||||
text-align: center;
|
||||
background-color: rgba(34, 34, 34, .8);
|
||||
color: rgba(231, 231, 231, .7);
|
||||
border-radius: 7px;
|
||||
width: 7em;
|
||||
height: 7em;
|
||||
|
||||
}
|
||||
|
||||
.wraptocenter a {
|
||||
text-decoration: none;
|
||||
vertical-align: middle;
|
||||
padding: .5em;
|
||||
color: rgba(231, 231, 231, .7);
|
||||
}
|
||||
|
||||
.wraptocenter a:hover {
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* #accueil {
|
||||
margin: 0px auto;
|
||||
|
|
Loading…
Reference in New Issue