Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Browser Default Text Boxes in Materialize css

I want to apply my own css styles to the text boxes while using materialize css. But I cannot find any option to get the browser default text boxes.

Is there a way by which I can omit the default style provided in the Materialize css framework?

like image 395
Ritwik Bhar Avatar asked Oct 08 '16 19:10

Ritwik Bhar


1 Answers

Specify input type, then add the browser-default class.

<input type="text" class="browser-default">
like image 79
Hichem Benali Avatar answered Nov 15 '22 23:11

Hichem Benali