If this question has been raised previously, please verify if it is the same query.
I am currently working with Materialize CSS and I am interested in learning how to use multiple types simultaneously. For example:
<input id="login_password" type="search|password" placeholder="Password">
When I use type="search", I get an impressive input design and now I want to apply that to other input types as well.
I attempted using two types like so:
<input id="login_password" type="search" type="password" placeholder="Password">
However, it seems like the type="password" attribute is being disregarded.