Answers for "how to style second child in css"

CSS
3

second child css

.YourElementsClass:nth-child(2) {
  /* your styles */
}
Posted by: Guest on March-28-2021
0

apply style to second child div

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

Browse Popular Code Answers by Language