You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The site looks nice, and I get that you have very minimal styling.
I just wanted to give some advice on the way you write the CSS. Generally you won't have any problems on small projects like this, but as you start working on larger code-bases (or with bigger teams) it's good to have consistency in the way you write styles.
This is an amazing resource: cssguidelin.es
Styling with IDs is generally not a great idea. They have the highest specificity of any selector so it can be hard to override styles, and can only ever be used once, which prevents you from reusing styles.
The text was updated successfully, but these errors were encountered:
The site looks nice, and I get that you have very minimal styling.
I just wanted to give some advice on the way you write the CSS. Generally you won't have any problems on small projects like this, but as you start working on larger code-bases (or with bigger teams) it's good to have consistency in the way you write styles.
This is an amazing resource: cssguidelin.es
Styling with IDs is generally not a great idea. They have the highest specificity of any selector so it can be hard to override styles, and can only ever be used once, which prevents you from reusing styles.
The text was updated successfully, but these errors were encountered: