Answers for "how to get second child"

CSS
1

get second child div css

.manufacturer_box div:nth-child(2) {
            border-top: 5px solid #e0e0e0 !important; 
     }
Posted by: Guest on August-24-2021
0

javascript get 2nd child element

//you can use the css nth-child property like this:
var second-child = document.querySeletorAll('[your element name]:nth-child(2)');
Posted by: Guest on December-26-2020

Code answers related to "how to get second child"

Browse Popular Code Answers by Language