Answers for "css hide second element"

CSS
0

css remove second element

li.mybutton:nth-child(2){
   display:none;
}
Posted by: Guest on October-13-2021
0

Hide second occarrence of a css class

.bbpressloginurl:not(:first-child) { display: none; }
Posted by: Guest on July-13-2021

Browse Popular Code Answers by Language