Skip to content

Instantly share code, notes, and snippets.

@JetFault
Created August 16, 2013 18:24
Show Gist options
  • Save JetFault/6252276 to your computer and use it in GitHub Desktop.
Save JetFault/6252276 to your computer and use it in GitHub Desktop.
make me responsive
.master {
display: inline-block;
float: inherit;
}
.text {
width: 100px;
display: inline-block;
float: inherit;
}
/* I need width here to be responsive */
.progress-bar {
display: inline-block;
float: inherit;
}
.cancel {
width: 50px;
display: inline-block;
float: inherit;
}
<div class="master">
<div class="text">Uploading 10 of 10</div>
<div class="progress-bar"></div>
<span class="cancel btn"><a href="#">Cancel</a></span>
</div
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment