most important css properties code example
Example 1: important css
body{
font-family: verdana, arial !important;
}
Example 2: !important css
div {
width: 100% !important;
}
Example 3: important css
Hey! Using !important in your code means that you've done something wrong.
Try avoiding it as much as possible.