We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 157c247 commit 04df1b5Copy full SHA for 04df1b5
translations/pt_BR/README.md
@@ -458,6 +458,26 @@ Os comentários sempre estarão antes do código a que se refere.
458
459
#### CSS Declaration Order
460
461
+A declaração das propriedades, devem ser em ordem alfabética.
462
+
463
+```css
464
+/* Good */
465
+.item {
466
+ background: #fff;
467
+ color: #ffcc00;
468
+ margin: 0;
469
+ position: absolute;
470
+}
471
472
+/* Bad */
473
474
475
476
477
478
479
+```
480
481
#### CSS Name
482
483
#### CSS Performance
0 commit comments