It sounds simple, but I will say that I am using bootstrap, and the input field has a label, when I resize the text below it, it is not centered.
Here are some simple html to demonstrate:
<form action="http://google.com"> <div> <label for="inputBox">Email address</label> <input name="email" type="text" id="inputBox"/> <br> (Center under input) </div> </form>
The label should be connected to the text input field, the text "(under the central approach) should appear under the input field in the middle.
Ideally, the text (Center under input) should be glued centrally under the input text box, while the shortcut works fine.
Is it possible? I am trying with a table (of all things) at the moment, but I can not make it behave, I tried positioning, etc. Still no luck.
Any help is greatly appreciated.
source share