I have a jsfiddle here
What I want to do is that I want to add a bit of space next to the text “Number of Replies” so that the text is not too close to the table border on either side. I also want to add a space on the right hand side next to both radio buttons.
How can this be achieved?
Thanks
If you add padding:10px to your CSS, you can give the elements enough space around them so that they aren’t right up against the borders:
Here is your updated jsfiddle to give you an idea of what that would look like.
Next, to fix the problem with the radio buttons, put a
<span>around both Single and Multiple, and get rid of the space. Also, add adivaround each input/span pair. Afterwards, add this to your CSS:See this jsfiddle for an example.
Here is the modified HTML: