J'ai besoin d'intimité. Non pas parce que mes actions sont douteuses, mais parce que votre jugement et vos intentions le sont.
5143 links
Des variables en css ???
Un framework css spécialement conçu pour pluxml mais qui peut être réutilisé dans d'autres projets.
Ses atouts : légèreté, documenté en français, communauté active et réactive, facilité d'utilisation, courbe d'apprentissage très rapide.
Donc à utiliser sans modération. N'hésitez pas à en parler autour de vous.
VOUS EN PRENDREZ BIEN UN PEU PluCss !
À utiliser sur Debian et dérivées
Librairie javascript permettant d'améliorer et d'étendre les sélecteurs css
via Idleman
Avec des templates intéressants...
Un outils pour créer les éléments de son design rapidement, en se basant sur le framework css pure.
"I found a solution, but it is mother of all hacks, hopefully it will serve as a starting point for other more robust solutions. The downside (too big in my opinion) is that any browser that doesn't support text-shadow but supports rgba (IE 9) won't render the text unless you use a library such as Modernizr (not tested, just a theory).
Firefox uses the text color to determine the color of the dotted border. So say if you do...
select {
color: rgba(0,0,0,0);
}
Firefox will render the dotted border transparent. But of course your text will be transparent too! So we must somehow display the text. text-shadow comes to the rescue:
select {
color: rgba(0,0,0,0);
text-shadow: 0 0 0 #000;
}
We put a text shadow with no offset and no blur, so that replaces the text. Of course older browser don't understand anything of this, so we must provide a fallback for the color:
select {
color: #000;
color: rgba(0,0,0,0);
text-shadow: 0 0 0 #000;
}
This is when IE9 comes into play: it supports rgba but not text-shadow, so you will get an apparently empty select box. Get your version of Modernizr with text-shadow detection and do...
.no-textshadow select {
color: #000;
}
Enjoy."
Des snippets css. Plein de bonnes choses :)
Convertisseur HTML vers Markdown en pur css.
Seules les images ne sont pas transformées (sauf avec Opera, mais je n'ai pas testé)
"Petit" site intéressant à explorer.
Liste de vidéos à voir sur le css
Une série d'outils d'optimisation.
Pas mal comme idée sauf qu'elle n'est pas utilisée par ceux qui l'ont créée !!! :)
Pas mal. A étudier. Voir si cela passe sur les versions récentes d'ie.
De petites astuces css bien pratiques.