I was creating a tag in which I wanted to apply two classes for a
tag which would be a thumbnail gallery. One class for its
-
2020-12-13 01:52
Actually, the class that defined last in the css - is applied on your div.
check it out:
red last in css
.blue{ color: blue; }
.red { color: red; }
blue red
red blue
vs
blue last in css
.red { color: red; }
.blue{ color: blue; }
blue red
red blue