Buttons
Buttons in NextGenCSS
Last updated
Buttons in NextGenCSS
...other code
button : "btn",
...other codeButtons classes are of 4 kinds
button on tag it is the default style you don't need any class for this
.btn-curve button with curvy edges
.btn-bootstrap buttons like our favourite bootstrap buttons
.btn-circle with more circular edges
<button class="">This is a button</button>
<button class="btn-curve">This is a button</button>
<button class="btn-circle">This is a button</button>
<button class="btn-bootstrap">This is a button</button>
Last updated