Remove styles from a select in materialize

0

I have a form which I need when selecting an option of a select it appears in the other select different items when selecting the first select, it works for me but when using materializecss.com as a framework, it does not show it to me, how can I do it to remove the select styles in materializecss.com ???

    
asked by Moisés Aguilar 02.05.2018 в 21:43
source

2 answers

2

You could use the default Class of Materialize " browser-default ".

example:

<input type="text" class="browser-default"/>

Official Documentation: Here

    
answered by 02.05.2018 в 22:00
1

Generate a class and add it to select and place it! important at the end example

.class{
  color: #000000 !important
}

Here you should take the color black

    
answered by 02.05.2018 в 21:54