How do you Tab and put blank spaces for Radio Buttons?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • patelxxx
    New Member
    • May 2007
    • 135

    How do you Tab and put blank spaces for Radio Buttons?

    Currently the following code is location on the left of the page and wanted to move this more to the right, I don't want to use align, I what to move it forward like a 'space bar' on the keyboard? see radio button code below:
    [HTML]
    <input type="radio" name"True" value="True">Tr ue[/HTML]

    cheers
  • just a feeling
    New Member
    • Aug 2007
    • 86

    #2
    Try this,

    [HTML]<style type="text/css">
    .margin {
    margin-left: 50px;
    }
    </style>


    <label class="margin">
    <input name="True" type="radio" class="margin" id="True" value="True" />
    True
    </label>[/HTML]

    Comment

    Working...