Skip to content

Instantly share code, notes, and snippets.

@matheusagcosta
Last active August 29, 2015 14:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save matheusagcosta/40eb08a9fa013a549745 to your computer and use it in GitHub Desktop.
Save matheusagcosta/40eb08a9fa013a549745 to your computer and use it in GitHub Desktop.
Full width search
<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