bonsoir
css lint m'affiche 3 warning
1: Use the bulletproof @font-face syntax @font-face declaration doesn't follow the fontspring bulletproof syntax.
src: url("../fonts/notosanstifinagh.woff2")
quelle serait la bonne syntaxe?
-------
2:Disallow selectors that look like regexs Attribute selectors with ^= are slow!
span[class^=w]:nth-of-type(n+0) {
j'ai teste
span[class*="w"]:nth-of-type(n+0) {
css lint me dit la meme chose
y aurait il une autre facon de selectionner mes span qui donnerait un meilleur resultat?
--------
3:Beware of broken box size Using width with padding-left can sometimes make elements larger than you expect.
padding-left: 15%
ca je ne vois pas comment faire autrement et ca me semble moins important
en vous remerciant pour votre aide
------------
voici une portion de mon code
Modifié par nantais (04 Apr 2019 - 20:59)
css lint m'affiche 3 warning
1: Use the bulletproof @font-face syntax @font-face declaration doesn't follow the fontspring bulletproof syntax.
src: url("../fonts/notosanstifinagh.woff2")
quelle serait la bonne syntaxe?
-------
2:Disallow selectors that look like regexs Attribute selectors with ^= are slow!
span[class^=w]:nth-of-type(n+0) {
j'ai teste
span[class*="w"]:nth-of-type(n+0) {
css lint me dit la meme chose
y aurait il une autre facon de selectionner mes span qui donnerait un meilleur resultat?
--------
3:Beware of broken box size Using width with padding-left can sometimes make elements larger than you expect.
padding-left: 15%
ca je ne vois pas comment faire autrement et ca me semble moins important
en vous remerciant pour votre aide
------------
voici une portion de mon code
@font-face {
font-family: tifinagh;
src: url("../fonts/notosanstifinagh.woff2")
}
.rond> div {
position: relative;
margin: 0 auto 0;
width: 300px;
height: 240px;
}
span[class^=w]:nth-of-type(n+0) {
transform-origin: 50% 100%;
font-family: tifinagh;
position: absolute;
height: .5em;
line-height: .028em;
white-space: pre;
overflow: visible
}
.w0 {
transform: rotate(2.99rad);
left: 158px;
top: 194px
}
.w1 {
transform: rotate(3.07rad);
left: 150.5px;
top: 199.8px
}
.w2{ etc
Modifié par nantais (04 Apr 2019 - 20:59)