Weilin Hong
Weilin Hong

Reputation: 41

text can't be left aligned

I want my whole section to be left aligned. This is my #CSS code:

#Gender{text-align:left;}

<label id="Gender">
Your Gender: <br>
<label for="male">
    <input id="male" type="radio" name="male-female">male
</label><br>
<label for="female">
    <input id="female" type="radio" name="male-female">female
</label><br>

Upvotes: 1

Views: 53

Answers (2)

Tharik Ajis
Tharik Ajis

Reputation: 1

Try this.

#Gender{
   display:block / inline-block;
   text-align:left;
}

Upvotes: 0

Liam Clarke
Liam Clarke

Reputation: 263

text-align only works for block elements.

Use an appropriate block element or add display block

Upvotes: 3

Related Questions