diff options
author | Marco Scannadinari <m@scannadinari.co.uk> | 2014-02-26 21:22:39 +0000 |
---|---|---|
committer | Marco Scannadinari <m@scannadinari.co.uk> | 2014-02-26 21:22:39 +0000 |
commit | bceeba2040cb292d3746262ce0e7d43392eb5dfd (patch) | |
tree | 2f1753a7eb4d38bec392374fbb0f4f9737f1e34e /css.html.markdown | |
parent | 94b58de8b5a3c4a11e806317a9349032ed71d94f (diff) |
Add missing semicolons
Diffstat (limited to 'css.html.markdown')
-rw-r--r-- | css.html.markdown | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/css.html.markdown b/css.html.markdown index 26eaae53..76319340 100644 --- a/css.html.markdown +++ b/css.html.markdown @@ -2,6 +2,7 @@ language: css contributors: - ["Mohammad Valipour", "https://github.com/mvalipour"] + - ["Marco Scannadinari", "https://github.com/marcoms"] filename: learncss.css --- @@ -129,11 +130,11 @@ selector { width: 5in; /* in inches */ /* Colors */ - background-color: #F6E /* in short hex */ - background-color: #F262E2 /* in long hex format */ - background-color: tomato /* can be a named color */ - background-color: rgb(255, 255, 255) /* in rgb */ - background-color: rgb(10%, 20%, 50%) /* in rgb percent */ + background-color: #F6E; /* in short hex */ + background-color: #F262E2; /* in long hex format */ + background-color: tomato; /* can be a named color */ + background-color: rgb(255, 255, 255); /* in rgb */ + background-color: rgb(10%, 20%, 50%); /* in rgb percent */ background-color: rgba(255, 0, 0, 0.3); /* in semi-transparent rgb */ /* Images */ |