This commit is contained in:
pdiogoantunes 2018-03-23 11:38:39 +01:00
parent eb9042998f
commit 23da6927fc

31
HowtoCSS.md Normal file
View file

@ -0,0 +1,31 @@
## Sélections
~~~
<p class='maclass'><span id='premier'>Un jour j'écrirai</span> <span id='monid'>mon texte</span>.</p>
~~~
Selon :
- id :
~~~
#monid { /* ... */ }
~~~
- class :
~~~
.maclass { /* ... */ }
~~~
- balise + id :
~~~
span#monid { /* ... */ }
~~~
- le premier élément ayant comme parent :
~~~
~~~