There are mainly three types of Pure CSS buttons in the Materialize CSS. The followings are the Materialize CSS buttons:
To create Materialize CSS raised button, add .btn
class to the <button>
or <a>
element base class.
To create floating button, add .btn-floating
as well as additional color classes to the <button>
or <a>
element base class
To create flat button, add .btn-flat
class to the <button>
or <a>
element base class.
To create submit button, add .btn
class to the <button>
tag with a type submit.
To create large button, add .btn-large
to the to <button>
or <a>
element base class.
To create small button, add .btn-small
class to the to <button>
or <a>
element base class.
To create disabled button, add .disabled
class to the to <button>
or <a>
element base class.