1
1
mirror of https://github.com/namibia/awesome-cheatsheets.git synced 2024-06-01 12:20:48 +00:00

Groupings added

This commit is contained in:
Yogesh Ojha 2020-06-21 20:28:47 +05:30
parent b70c19b739
commit 5f2ce01663

View File

@ -76,3 +76,27 @@ Items can be multiplied by `*`
<li></li> <li></li>
</ul> </ul>
``` ```
### Grouping
Items can be grouped together using `()`
`table>(tr>th*5)+tr>t*5`
```html
<table>
<tr>
<th></th>
<th></th>
<th></th>
<th></th>
<th></th>
</tr>
<tr>
<t></t>
<t></t>
<t></t>
<t></t>
<t></t>
</tr>
</table>
```