The universal selector matches all the elements in a HTML document
It is represented by an asterisk (*)
* {
...
}
🔹Type Selector
The type selector matches all the elements specified in a comma- delimited list.
It allows you specify the same styles to several elements
h1, h2, h3 {
...
}
🔹Class Selector
The class selector allows you to match a rule with element(s) carrying a class attribute whose value matches the one you specify in the class selector.
this...
.main {
...
}
🔹Id Selector
The class selector allows you to match a rule with an element carrying an id attribute whose value matches the one you specify in the class selector.
7 GitHub Repositories all web developers should know
Thread below 🧵
🔹33 JS CONCEPTS
This repository contains 33 concepts that every JavaScript developer should know. It is a very useful repository for both newbie and experienced JavaScript developers to strongly grasp the basics of JavaScript
Cleensheets are very useful resources which contains huge amount of information on a specific topic.
This repository has got cheatsheets for basically everything — from frontend libraries to backend and even databases.
" If Mr X, a well renowned and highly educated professional could make this kind of mistake and still bounce back then you have a chance"
What I do is that I motivate myself from the mistakes/failures of other experts in the past.
If these people failed, then who am I?
Ask for help.
Whether it's a fellow developer on social media or a team member at work.
Opening up to someone about your feelings can be very helpful as he/she is most likely to give you words of encouragement in hopes of allaying your doubts and motivating you.