My HTML code for a small web app has a button
that says "ok," but it's too tiny to display the text fully.
I wonder if I'm missing something with the span
element?
How can I enlarge the button
so that it's bigger and shows the entire "ok" text?
<center>
<br>
<br>
<span id="accept_button" style="display:none;"><button onclick="task.accept_choice();"><h3>ok</h3></button></span>
<span id="next_button" style="display:none;"><button onclick="task.next_trial();"><h3>ok</h3></button></span>
</center>