-
-
Save keysona/8cb38fc227f0a275a49b3892e0c60144 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ## How CSS works | |
| - **HTML**, document's content. | |
| - **CSS** (Cascading Style Sheets), document's style. | |
| - **DOM** (Document Object Model), tree-like structure, formed from DOM node, combines the document's content with its style in memory. | |
| - *Markup language*: HTML, SVG, XML. | |
| - **CSS Rule** formed from: properties & selector. | |
| - CSS use: external stylesheet (```<link>```), internal stylesheet (```<style>```), inline styles. | |
|  |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment