├── LICENSE ├── README.md ├── css-cheatsheet.afphoto ├── css-cheatsheet.gif ├── css-cheatsheet.jpg └── css-cheatsheet.pdf /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2018 iLoveCoding 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 🔥 CSS Cheatsheet 🗺️️️️️🗺️️️ 2 | This is the cheatsheet on how to use CSS. In here you will find: 3 | 4 | 1. The basic syntax of CSS 5 | 1. The terminologies used 6 | 1. The 3 places to write CSS 7 | 1. Common selector types 8 | 1. And the common properties organized by group 9 | 10 | Remember! The most authoritative documentation on web technology and CSS is the Mozilla Documentation. For a full [CSS Reference, click here](https://developer.mozilla.org/en-US/docs/Web/CSS/Reference) 11 | 12 | Want to learn HTML & CSS? [here's an awesome video course](https://ilovecoding.org/courses/htmlcss2) 13 | 14 | ## I present to you - The CSS Cheatsheet 💪 15 | [![css Cheatsheet](css-cheatsheet.jpg)](css-cheatsheet.pdf) 16 | 17 | Download [PDF](css-cheatsheet.pdf) or [Image](css-cheatsheet.gif) 18 | 19 | ## ️Want an HTML Cheatsheet as well? 20 | 21 | Check out this [HTML Cheatsheet](https://github.com/iLoveCodingOrg/html-cheatsheet) 22 | 23 | ## Other Cheatsheets: 24 | 25 | - [HTML Cheatsheet](https://github.com/iLoveCodingOrg/html-cheatsheet) 26 | - [JavaScript Cheatsheet](https://github.com/iLoveCodingOrg/javascript-cheatsheet) 27 | -------------------------------------------------------------------------------- /css-cheatsheet.afphoto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iLoveCodingOrg/css-cheatsheet/8a618378092480cf21e6267263da48bbe81315a8/css-cheatsheet.afphoto -------------------------------------------------------------------------------- /css-cheatsheet.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iLoveCodingOrg/css-cheatsheet/8a618378092480cf21e6267263da48bbe81315a8/css-cheatsheet.gif -------------------------------------------------------------------------------- /css-cheatsheet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iLoveCodingOrg/css-cheatsheet/8a618378092480cf21e6267263da48bbe81315a8/css-cheatsheet.jpg -------------------------------------------------------------------------------- /css-cheatsheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iLoveCodingOrg/css-cheatsheet/8a618378092480cf21e6267263da48bbe81315a8/css-cheatsheet.pdf --------------------------------------------------------------------------------