[CORR] Changement du code HTML de l'élément

* DIV en SPAN
  * Adaptation du CSS en conséquence
  * Validation sur validator.w3.org semble OK.
This commit is contained in:
Olivier DOSSMANN 2012-03-07 13:58:52 +01:00
parent 20af0ea38d
commit bd212bd6a8
3 changed files with 4 additions and 2 deletions

View File

@ -1,10 +1,10 @@
<li> <li>
<a class="cadre" href="@@URL_ELEMENT@@" title="@@DESC_ELEMENT@@"> <a class="cadre" href="@@URL_ELEMENT@@" title="@@DESC_ELEMENT@@">
<div class="element"> <span class="element">
@@TITRE_ELEMENT@@ <br /> @@TITRE_ELEMENT@@ <br />
<img src="@@URL_IMAGE@@" alt="@@DESC_IMAGE@@" title="@@TITRE_IMAGE@@" /> <img src="@@URL_IMAGE@@" alt="@@DESC_IMAGE@@" title="@@TITRE_IMAGE@@" />
</div> </span>
</a><span class="cache_cache">&nbsp;;</span> </a><span class="cache_cache">&nbsp;;</span>
</li> </li>

View File

@ -114,6 +114,7 @@ text-decoration: none;
} }
#corps a.cadre .element { #corps a.cadre .element {
display: block;
height: 9em; height: 9em;
margin-top: 1em; margin-top: 1em;
} }

View File

@ -114,6 +114,7 @@ text-decoration: none;
} }
#corps a.cadre .element { #corps a.cadre .element {
display: block;
height: 9em; height: 9em;
margin-top: 1em; margin-top: 1em;
} }