Answers for "apply style to second child div"

CSS
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
0

apply style to second child div

div:nth-child(2){
  background: #05ffb0;
  border: 1px solid;
  padding: 5px;
}
Posted by: Guest on September-06-2021

Browse Popular Code Answers by Language