CSS
📄 CSS File Overview
CSS files are plain text files used to style and design web pages. They are saved with the .css file extension and work alongside HTML to control layout, colors, fonts, and overall visual appearance.
🧾 Example
CSS
style.css
⚙️ Technical Details
| Feature | Description |
|---|---|
| File Extension | .css |
| MIME Type | text/css Tells the browser that the file is a stylesheet |
| Code Type | Plain text Contains styling rules, not programming logic |
| Format Type | Style Sheet Language Works together with HTML to define design |
| Working Environment | Client-side Runs directly in the browser (Chrome, Edge, Firefox, Safari, Opera) |
| Current Version | CSS3 |
| Previous Version | CSS2 |
💡 Additional Notes
- CSS stands for Cascading Style Sheets
- It controls the visual presentation of web pages
- CSS can be applied in three ways: Inline, Internal, External (recommended)
