From 485eefc0176688574df58ce740b415c3782337db Mon Sep 17 00:00:00 2001 From: rayelliott Date: Sat, 9 May 2020 15:26:33 +0000 Subject: [PATCH] add wh - width, height to css --- UltiSnips/css.snippets | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/UltiSnips/css.snippets b/UltiSnips/css.snippets index 8307065..e26e679 100644 --- a/UltiSnips/css.snippets +++ b/UltiSnips/css.snippets @@ -39,6 +39,11 @@ snippet h "height: ;" height: ${1:100%}; endsnippet +snippet wh "width: ; height: ;" +width: ${1:100%}; +height: $1; +endsnippet + snippet mxw "max-width: ;" max-width: ${1:100%}; endsnippet