J'ai besoin d'intimité. Non pas parce que mes actions sont douteuses, mais parce que votre jugement et vos intentions le sont.
5136 links
Des onglets en css pur.
D'autres solutions ici : https://github.com/you-dont-need/You-Dont-Need-JavaScript
Via SebSauvage
Pour styliser les tiddlers d'un tiddlywiki.
Je pense que c'est text-overflow qui n'est pas défini et qu'il faut utiliser simplement overflow...
Des images dans du svg...
En fait, tout le site est excellent.
Un très bon guide !
Via Timo.
Comme il dit dans l’article, ceci change énormément la façon dont on cible les élements en CSS. En fait… ça change tout. Car jusqu’à maintenant, on devait descendre les branches de l’arbre DOM, maintenant on pourra le remonter.
C'est pour ça d'ailleurs qu'on appelle ça du CSS : cascading style sheet.
On va l'appeler comment maintenant :
Les attributs css et la façon de les utiliser.
À lire. Les conditions en CSS !
Designing systems of reusable components that adapt to responsive layouts, containers, work with different content states and adapt to user needs, behaviour and context.
An ebook with lots of tips and techniques on how to debug CSS the right way with easy and studied methods.
Responsive rems
The fact that all of these pieces are responsive is pretty dang neat. How does he do it?
html { font-size: 1vmin; }
The
vmin
unit responds to the viewport’s smallest side, so it will decrease if the screen gets smaller. Therem
unit is relative to the font-size of the root element. So if we base everything inrems
, they’re all relative to the same value. Great technique!
How CSS animations can enhance your user experience. With CSS and JS progress, implementing animations on websites has never been easier. But how do we make sure that our CSS animations and transitions will be meaningful to our users? That they will not be just some annoying “in-your-face” eye candy?