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

html - How to set bootstrap input responsive width? -

javascript - Highchart x and y axes data from json -

javascript - Get js console.log as python variable in QWebView pyqt -