[07]CSS Syntax, CSS Background


[07]CSS Syntax, CSS Background

HTML [07]CSS Syntax, CSS Background MrBini 2016. 4. 4. 15:22 이웃추가 본문 기타 기능 1. CSS Syntax 2. CSS Example <!DOCTYPE html><html> <head> <style> p { 셀렉터 color: red; text-align: center; } </style> </head> <body> <p>Hello World!</p> <p>This paragraph is styled with CSS.</p> </body> </html> 3. CSS 주석 <!DOCTYPE html> <html> <head> <style> p { color: red; /* This is a single-line comment */ text-align: center; } /* This is a multi-line comment */ </style> </head> <body> <p>Hello World!</p> <p>This paragr...



원문링크 : [07]CSS Syntax, CSS Background