mirror of
https://github.com/namibia/awesome-cheatsheets.git
synced 2024-12-22 10:08:54 +00:00
Merge pull request #126 from yogeshojha/master
CSS properties added for Emmet
This commit is contained in:
commit
1495ca6ab9
@ -14,7 +14,7 @@ You can use Emmet in two ways:
|
|||||||
|
|
||||||
__This cheatsheet will assume that you press `Tab` after each expressions.__
|
__This cheatsheet will assume that you press `Tab` after each expressions.__
|
||||||
|
|
||||||
## Basics
|
## HTML
|
||||||
|
|
||||||
### Generating HTML 5 DOCTYPE
|
### Generating HTML 5 DOCTYPE
|
||||||
`html:5`
|
`html:5`
|
||||||
@ -215,3 +215,68 @@ To start the numbering from specific number, use this way
|
|||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
## CSS
|
||||||
|
|
||||||
|
Emmet works surprisingly well with css as well.
|
||||||
|
|
||||||
|
* `f:l`
|
||||||
|
|
||||||
|
```css
|
||||||
|
float: left;
|
||||||
|
```
|
||||||
|
|
||||||
|
You can also use any options n/r/l
|
||||||
|
|
||||||
|
* `pos:a`
|
||||||
|
|
||||||
|
```css
|
||||||
|
position: absolute;
|
||||||
|
```
|
||||||
|
|
||||||
|
Also use any options, pos:a/r/f
|
||||||
|
|
||||||
|
* `d:n/b/f/i/ib`
|
||||||
|
|
||||||
|
`d:ib`
|
||||||
|
|
||||||
|
```css
|
||||||
|
display: inline-block;
|
||||||
|
```
|
||||||
|
|
||||||
|
* You can use `m` for margin and `p` for padding followed by direction
|
||||||
|
|
||||||
|
`mr` -> `margin-right`
|
||||||
|
|
||||||
|
`pr` -> `padding-right`
|
||||||
|
|
||||||
|
* `@f` will result in
|
||||||
|
|
||||||
|
```css
|
||||||
|
@font-face {
|
||||||
|
font-family:;
|
||||||
|
src:url();
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
You can also use these shorthands
|
||||||
|
|
||||||
|
| Shorthand | Description |
|
||||||
|
| ----------- | ----------- |
|
||||||
|
| z | z-index |
|
||||||
|
| w | width |
|
||||||
|
| h | height |
|
||||||
|
| fz | font-size |
|
||||||
|
| ff | font-family |
|
||||||
|
| fw | font-weight |
|
||||||
|
| @lh | line-height |
|
||||||
|
| maw | max-width |
|
||||||
|
| mah | max-height |
|
||||||
|
| miw | min-width |
|
||||||
|
| mih | min-width |
|
||||||
|
| ! | !important |
|
||||||
|
| @f | font-face |
|
||||||
|
| @op | opacity |
|
||||||
|
| @lh | line-height |
|
||||||
|
| @op | opacity |
|
||||||
|
Loading…
Reference in New Issue
Block a user