From 7eb73eaf5016c6fa77b00ed3533a5fd7e27b110a Mon Sep 17 00:00:00 2001 From: Yogesh Ojha Date: Sun, 28 Jun 2020 00:05:51 +0530 Subject: [PATCH] css property table --- tools/emmet.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/tools/emmet.md b/tools/emmet.md index 4e24d67..1d06b64 100644 --- a/tools/emmet.md +++ b/tools/emmet.md @@ -245,11 +245,32 @@ Also use any options, pos:a/r/f display: inline-block; ``` +* `@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 |