Last active
August 29, 2015 14:17
-
-
Save matheusagcosta/40eb08a9fa013a549745 to your computer and use it in GitHub Desktop.
Full width search
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style> | |
.container { | |
display: table; | |
position: relative; | |
width: 100%; | |
} | |
button, | |
.input { | |
display: table-cell; | |
vertical-align: top; | |
} | |
input, | |
.input { | |
width: 100%; | |
} | |
button { | |
float: right; | |
} | |
</style> | |
<div class="container"> | |
<div class="input"> | |
<input type="text" /> | |
</div> | |
<button>Search</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment