How can I adjust the alignment of this radio button? I want to prevent the second line from breaking before the radio button.
<!DOCTYPE html>
<form>
<input type="radio" name="bunny" value="bunny"> In a faraway land known as Neverland, there lived an Easter bunny who despised chocolate and adored vegetables. <br>
</form>
</html>
This is the current CSS code I am using:
input[type="radio"] {
text-align: justify;
}
You can view the screenshot for reference here.