Pc portable Samsung
Comment réaliser un bouton hypertext cliquable sans javascript (lien dur).
Voici un script CSS qui va vous permettre de réaliser un bouton cliquable sans javascript et bénéficiant de la qualité du lien dur !
Comme vous le savez maintenant, les qualités suprêmes d’un lien sont celles d’être en dur et de contenir un élément texte plutôt qu’une image qui ne parle guère aux robots. Ce type de lien permet une indexation de qualité et offre la possibilité d’être créatif, alors pourquoi s’en priver ?
Copiez et collez les éléments CSS suivant entre les balises style :
a.ret:link { font-family: arial,verdana,sans-serif;
font-size: 11pt;
color: rgb(0, 255, 255);
text-decoration: none;
background-color: transparent;
font-weight: normal;
font-style: normal;
}
a.ret:visited { font-family: arial,verdana,sans-serif;
font-size: 11pt;
color: rgb(0, 255, 255);
text-decoration: none;
background-color: transparent;
font-weight: normal;
font-style: normal;
}
a.ret:hover { font-family: arial,verdana,sans-serif;
font-size: 10pt;
color: rgb(0, 255, 255);
text-decoration: none;
background-color: transparent;
font-weight: normal;
font-style: normal;
}
.retour { border-style: double;
border-color: rgb(255, 204, 0) rgb(255, 255, 0) rgb(255, 204, 51);
border-width: 6px;
background-repeat: repeat;
background-color: transparent;
background-image: url(http://www.visiograf.org/html/ima/fddem2.gif);
background-position: left top;
}