html - How to align text and button by bottom -


i want create text , button align bottom. enter image description here

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

Popular posts from this blog

mysql - Dreamhost PyCharm Django Python 3 Launching a Site -

java - Sending SMS with SMSLib and Web Services -

java - How to resolve The method toString() in the type Object is not applicable for the arguments (InputStream) -