Answers for "Hide first of type elements using css , how to hide elements using css"

CSS
0

Hide first of type elements using css , how to hide elements using css

.ctr-1 h3:first-of-type { display:none; }
/* - Or - */
.ctr-1 h3:nth-of-type(0) { display:none; }
Posted by: Guest on July-30-2021

Code answers related to "Hide first of type elements using css , how to hide elements using css"

Browse Popular Code Answers by Language