I will accept an answer of "not possible" if someone can explain why. However, I will not except an answer with using a <button>
because that is not what this question is asking.
I am trying to make an input button with two lines of words, but the newer versions of chrome are not letting me, here is what I have tried:
Carriage Return Separators
<input type="button" value="Line One Line Two"/>
<input type="button" value="Line One\r\nLine Two">
I know you can use white-space: normal;
but this will not let you <br>
where you want it to.
input[type="submit"] {
white-space: normal;
}
Is there a way that I can add the new line in the button where I choose?
i.e.
line one
line two