I have button
that has following effect by CSS
button{
margin:10rem ;
width:10rem
}
button#package_select:focus
{
border: 1px solid #fbd03c !important;
border-radius: 5px !important;
outline:none;
}
<center>
<button id ="package_select">select</button>
</center>
It is working fine. But Here my question is
The Button is selecting if you Right click and left click also. I want to select the button only when the user clicked on Right click on the Mouse.
How we can achieve this through Pure CSS
?