Reputation: 7971
Padding property not working for radio button, it is only working in IE. fiddle link http://jsfiddle.net/yvHPn/
<head>
<style>
body {margin:0; padding:0}
.radio input{ padding-left:20px;}
</style>
</head>
<body>
<div class="radio">
<input type="radio" />
</div>
</body>
</html>
Upvotes: 2
Views: 2026
Reputation: 2348
You need to put the padding only in .radio class like so
.radio { padding-left:20px;}
Upvotes: 3