Bonjour
J'ai créé une zone cliquable pour un logo en arrière fond:
Cela marche nickel mais à la validation ça râle:
En soit le truc marche avec les navigateurs que j'ai essayé mais si cela peut être valide...
Est-ce que quelqu'un arriverait à régler ce truc pour un débutant en css et un ignare en anglais?
Bon week-end.
Modifié par pbpub (13 Oct 2006 - 20:22)
J'ai créé une zone cliquable pour un logo en arrière fond:
#logo {
left: 2px;
width: 150px;
cursor: pointer;
position: absolute;
top: 0px;
height: 140px;
}
<a href="http://www.pasaj.ch"><div id=logo></div></a>
Cela marche nickel mais à la validation ça râle:
a écrit :
# Error Line 34 column 44: an attribute value specification must be an attribute value literal unless SHORTTAG YES is specified.
<a href="http://www.pasaj.ch"><div id=logo></div></a>
# Error Line 34 column 48: document type does not allow element "div" here; missing one of "object", "applet", "map", "iframe", "button", "ins", "del" start-tag.
<a href="http://www.pasaj.ch"><div id=logo></div></a>
The mentioned element is not allowed to appear in the context in which you've placed it; the other mentioned elements are the only ones that are both allowed there and can contain the element mentioned. This might mean that you need a containing element, or possibly that you've forgotten to close a previous element.
One possible cause for this message is that you have attempted to put a block-level element (such as "<p>" or "<table>") inside an inline element (such as "<a>", "<span>", or "<font>").
En soit le truc marche avec les navigateurs que j'ai essayé mais si cela peut être valide...
Est-ce que quelqu'un arriverait à régler ce truc pour un débutant en css et un ignare en anglais?
Bon week-end.
Modifié par pbpub (13 Oct 2006 - 20:22)