Answers for "hide second element css"

CSS
0

css remove second element

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

css hide all elements after nth

<b>1</b>
<b>2</b>
<b>3</b>
<b>4</b>
<b>5</b>

b:nth-of-type(1n+4){ opacity:.3; }
Posted by: Guest on July-26-2021

Browse Popular Code Answers by Language