+ 1
I cant figure out why the male option is not showing đ
One of the Form tags isn't working but the other one of same tags is working https://code.sololearn.com/Wm3mWhLUYa7M/?ref=app
12 Answers
+ 9
https://code.sololearn.com/WRQrqFln43zJ/?ref=app
Well when I take off the tag <select> it works... It didnât work because you used the tag <select> and that tag create a dropdown box.
+ 9
Remove <select> and your problem is fixed. I post you some other problem what you made on your code.
+ 6
Please show us your code so we can help you.
+ 6
Youâre using a tag <lebal> that should be <label>. Maybe thatâs the problem?
And why did you wrap it up between <select> tags?
+ 3
Luckson C nonde
Because you have incorrectly written <select> syntax, as well as <table>.
Syntax:
<select>
<option disabled>
Your gender
</option>
<option>male</option>
<option>female</option>
<option>others</option>
</select>
Also correct the <lebal> in <label>
and don't forget about the closing tag </ul>. âș
P.S: "judging by the location of the closing tag </select>, it seems that you have confused the <select> tag with <form>".
+ 2
Remove the select that is above the table tag. This is creating a combobox. That lays on top of male.
<select> <------- this one
<table>
<ul>
<li><lebal> male</lebal>
The combobox it self is good.
+ 1
JTLZ there is a link down below my post to my the code
0
I cant figure out why the male option is not showing đ
One of the Form tags is working but the other or same tags are working
0
<input type="radio" name="gender" value="male"> Male<br>
0
I did just that but nothing
0
I did just that but nothing
0
I did just that but nothing