I'm trying to make a Quiz App and I noticed that in between an input tag and a label tag the cursor turns into a text cursor.
Text cursor in between the tags (Can't embed it, because this is my first question on this site)
Pointer cursor on the label text
Default cursor on the input tag
I tried researching this issue on stackoverflow and found out that the little space in between is there because of a linebreak in my code:
<input type="radio" id="a" name="answer">
<label id="a_text" for="a">Question</label>
I can remove the empty space by having the 2 tags on the same line right next to eachother, but I quite like that white space in between there.
<input type="radio" id="a" name="answer"><label id="a_text" for="a">Question</label>
I want to know why that little space uses a text cursor and would like to ask if I can style the cursor for that space in CSS so that it looks normal again.
As i said earlier this is my first question on this site, so if there is anything that I could do to make these posts better, please tell me.