Skip to content

Instantly share code, notes, and snippets.

@uggedal
Created October 23, 2012 13:28
Show Gist options
  • Save uggedal/3938731 to your computer and use it in GitHub Desktop.
Save uggedal/3938731 to your computer and use it in GitHub Desktop.
mobile media queries hack
label,
input[type=text],
select {
float: left;
}
input[type=text]:after,
select:after {
content: " ";
clear: left;
}
@media screen and (max-width: 450px) {
label,
input[type=text],
select {
float: none;
width: 100%;
}
.tooltip {
min-height: 100%;
width: 100%;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment