how to overwrite a css importnat

Solutions on MaxInterview for how to overwrite a css importnat by the best coders in the world

showing results for - "how to overwrite a css importnat"
Adelynn
30 Sep 2016
1/*Some examples with a higher specificity (first is highest/overrides, third is lowest):*/
2
3table td    {height: 50px !important;}
4.myTable td {height: 50px !important;}
5#myTable td {height: 50px !important;}
6