Catégorie : CSS
pour mettre un caractère accentué dans l’objet d’un mailto il faut connaitre son encodage url.
Ainsi pour mettre un é il faut mette %e9
exemple :
<a href= »mailto:dupond@truc.fr?subject=d%e9couvrez »></a>
pour mettre un caractère accentué dans l’objet d’un mailto il faut connaitre son encodage url.
Ainsi pour mettre un é il faut mette %e9
exemple :
<a href= »mailto:dupond@truc.fr?subject=d%e9couvrez »></a>
pour faire un hr en pointillé
hr{
width:400px;
background-color:#FF9900;
border-top: 10px dashed #FF9900;
}