We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a3ec77 commit 8769905Copy full SHA for 8769905
1 file changed
translations/pt_BR/README.md
@@ -20,6 +20,7 @@
20
* 3.1 [HTML Syntax](#html-comments)
21
* 3.2 [HTML Comments](#html-syntax)
22
* 3.3 [HTML Character Encoding](#html-character-encoding)
23
+ * 3.4 [HTML Attribute Order](#html-attribute-order)
24
* 4. [CSS / SCSS](#css--scss)
25
* 5. [JavaScript](#javascript)
26
@@ -160,6 +161,23 @@ Sempre use `UTF-8`
160
161
</head>
162
```
163
164
+#### HTML Attribute Order
165
+
166
+A ordem de atributos facilita a leitura e organização
167
168
+1. class
169
+2. id, name
170
+3. data-*
171
+4. src, for, type, href
172
+5. title, alt
173
+6. aria-*, role, itemprop
174
175
+```html
176
+<div class="..." id="..." itemprop="..."></div>
177
+<a class="..." href="...">...</a>
178
+<img class="..." src="..." alt="...">
179
+```
180
181
## Contribuindo
182
183
- Faça o fork!
0 commit comments