Darklg / CSSLisible

Reformatage et réorganisation de CSS
http://www.csslisible.com
MIT License
37 stars 5 forks source link

"?" dans un commentaire #80

Closed CyrilKrylatov closed 9 years ago

CyrilKrylatov commented 9 years ago

Source

// Fake-select ?

.test {
    margin: 0;
}

Résultat obtenu :

// Fake-select ?.test {
    margin: 0;
}

:love_hotel:

NumEricR commented 9 years ago

Mais ça marche très bien avec : /* Fake-select ? */

:p

CyrilKrylatov commented 9 years ago

Oui c'est probablement le // en commentaire !

Le mar. 7 avr. 2015 20:28, Eric R notifications@github.com a écrit :

Mais ça marche très bien avec : /* Fake-select ? */

:p

— Reply to this email directly or view it on GitHub https://github.com/Darklg/CSSLisible/issues/80#issuecomment-90690619.

Darklg commented 9 years ago

Ouais, le format de commentaire "// ..." est pas natif en CSS :)

CyrilKrylatov commented 9 years ago

tchip