Posts Tagged “HTML”

Coins arrondis et ombre portée en CSS

0Ted8th oct 2009Script html, Tuto, Webdesign, , ,

.shadow{ box-shadow: 7px 7px 8px #818181; -webkit-box-shadow: 7px 7px 8px #818181; -moz-box-shadow: 7px 7px 8px #818181; filter: progid:DXImageTransform.Microsoft.dropShadow(color=#818181, offX=7, offY=7, positive=true); } #box More »

Charte couleur

0Ted8th oct 2009Webdesign,

Voici la prochaine charte couleur en vue d’une évolution du site :

Caractères speciaux du web

0Ted24th avr 2009Script html,

Les principaux : – &nbsp; « – &laquo; ´ – &acute; » – &raquo; «  – &quot; < – &lt; > – &gt; More »

Afficher / masquer une ‹div›

0Ted22nd avr 2009Script html, ,

Exemple : function visibilite(thingId,txtAff,txtMasque) { var targetElement; var targetElementLink; targetElement = document.getElementById(thingId) ; targetElementLink = document.getElementById(thingId+’Link’); if (targetElement.style.display == « none ») { targetElement.style.display = More »