Getting start CSS

I write the article to record what I learned in CSS How to add css to to my document I can create a file in the project folder and save it as styles.css then add the following line inside tag. <link rel= "stylesheet" href="styles.css"> This <link> element tells the browser that where the stylesheet is . Now I can write some code to styles.css. p { color: blue; } How to add a class Sometimes I need find a way to select a subset of the elements without change the orthrs ....

September 3, 2022 · 1 min · Theme PaperMod