html - How to align text and button by bottom -
i want create text , button align bottom.
i've typed (btw using bootstrap3)
123 <button class ="btn btn-default btn-lg ">123</button>
however, seems align center of button, i've created jsfiddle illustrate code.
in bootstrap default vertical-align
middle need change bottom !important bootstrap css having defines vertical-align
property
use vertical-align:bottom !important;
button
body { margin: 10px; } button{ vertical-align:bottom !important }
<link href="https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet"/> 123 <button class ="btn btn-default btn-lg ">123</button>
Comments
Post a Comment