Skip to content

Instantly share code, notes, and snippets.

@junr03
Created July 9, 2014 16:31
Show Gist options
  • Save junr03/15333b92123ecb297ec5 to your computer and use it in GitHub Desktop.
Save junr03/15333b92123ecb297ec5 to your computer and use it in GitHub Desktop.
This CSS fixes inline radio buttons for rails forms
input[type="radio"], label{
float: left;
padding-bottom: 10px;
}
input[type="radio"] {
width: 20px;
clear: left;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment