[CSS]01. CheatSheet
css Lesson 1: Cheat Sheet CSS CSS: Cascading Style Sheets 1. Structures <style> selector{ property: value; property2: value2; } </style> <html> <body> <selector> </selector> </body> </html> 2. Style <style> content{ padding: 1px auto 1px auto; border-width: 1px; border-sytle: solid/double/none; border-color: red; border: 1px solid red; margin: 2px auto 2px auto; } </style> <html> <body> <content> </content> </body> </html> align <style> /* center align */ selector{ text-align: center/left/right/justify; /* or */ margin: auto; width: 100px; }...