apply style to second child div

Solutions on MaxInterview for apply style to second child div by the best coders in the world

showing results for - "apply style to second child div"
Mía
10 Nov 2017
1    .manufacturer_box div:nth-child(2) {
2            border-top: 5px solid #e0e0e0 !important; 
3     }
4
Dante
13 Nov 2017
1div:nth-child(2){
2  background: #05ffb0;
3  border: 1px solid;
4  padding: 5px;
5}