I’m using CSS to style my webpage. I want to apply the following CSS to every element on my form without having to set is individually for each element.
I was hoping there was some kind of wild card character that I could apply here.
Here is the CSS that I am trying to make global:
.noSelect
{
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-o-user-select: none;
user-select: none;
cursor: default;
margin:0px;
padding:0px;
}
See the universal selector