Change Height of Horizontal Radio Button Group
Hi I would like to change the height of a horizontal radio button group. I have tried change style of fieldset and each input and changing css. Is it possible to change the height?
- <style>
- #popMaintDist
- {
- height: 10px ! important;
- }
- </style>
- </head>
- <body>
- <div data-role="page" id="page">
- <div data-role="content" id="content" style="width: 100%; margin-left: 0px; margin-top: 0px; padding-top: 0px; padding-left: 0px;">
- <table style="width: 100%;">
- <tr>
- <td>
- <label for="popMaintDist">District:</label>
- </td>
- <td>
- <fieldset data-role="controlgroup" id="popMaintDist" data-type="horizontal" data-mini="true">
- <input id="checkbox-v-2a" name="radioMaintDist" value="1" type="radio">
- <label for="checkbox-v-2a">One</label>
- <input id="checkbox-v-2e" name="radioMaintDist" value="2" type="radio">
- <label for="checkbox-v-2e">Two</label>
- <input id="checkbox-v-2f" name="radioMaintDist" value="3" type="radio">
- <label for="checkbox-v-2f">Three</label>
- <input id="checkbox-v-2b" name="radioMaintDist" value="4" type="radio">
- <label for="checkbox-v-2b">Four</label>
- </fieldset>
- </td>
- </tr>
- </table>
- </div>
- </div>
- </body>
- </html>