Answers for "how to hide first ul from div 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

Browse Popular Code Answers by Language