Search code examples
htmlcssmaterial-designmaterialize

Materializecss buttons border styling?


How do you add border to Materialize css's buttons using built-in classes. For example how do you add white border to this,

 <button class="btn waves-effect waves-light" type="submit"   name="action">Submit
<i class="material-icons right">send</i>


Solution

  • Give this a try:

    .btn.waves-effect.waves-light { border: 2px solid #fff; }