html - Override css over materializecss -


since have installed materialize css. having trouble button uses custom class. need set border 0.

the css

button before : before button after: after

i have tried :

[type="checkbox"][_ngcontent-eog-31]    + label[_ngcontent-eog-31]:before, [type="checkbox"][_ngcontent-eog-31]:not(.filled-in)    + label[_ngcontent-eog-31]:after {   border:  0px, none!important; }  ,  checkbox{ border 0px, none!important; } 

border: 0px, none !important; invalid property value, remove ( , ) in between 0px , none

try give following code,

border: none !important; 

or

border: 0px !important; 

or

border: 0px none !important; 

Comments

Popular posts from this blog

networking - Vagrant-provisioned VirtualBox VM is not reachable from Ubuntu host -

c# - ASP.NET Core - There is already an object named 'AspNetRoles' in the database -

ruby on rails - ArgumentError: Missing host to link to! Please provide the :host parameter, set default_url_options[:host], or set :only_path to true -