diff --git a/index.html b/index.html
index eeede90..2ce7009 100755
--- a/index.html
+++ b/index.html
@@ -108,6 +108,15 @@
CMD + SHIFT + R | CTRL + SHIFT + R
//Select all
CMD + A | CTRL + A
+ CSS Shortcuts
+// Margin/Padding/Border 4 different values
+margin: 1px 1px 1px 1px (top, right, bottom, left)
+// Margin/Padding/Border 3 different values
+margin: 1px 1px 1px (top, right and left, bottom)
+// Margin/Padding/Border 2 different values
+margin: 1px 1px (top and bottom, right and left)
+// Margin/Padding/Border 1 value
+margin: 1px (top and bottom and right and left)