Hi
I have a simple form that is being displayed in kiosk mode using a tablet. When the user clicks to enter data to the input field, the keyboard takes up the bottom 1/3 of the screen and hides the other items they need to click.
To solve this, I could remove the header when they click in the input field, this will move the inout field to the top and expose the other field they need to click.
Can I do this with css?
Thanks
I have a simple form that is being displayed in kiosk mode using a tablet. When the user clicks to enter data to the input field, the keyboard takes up the bottom 1/3 of the screen and hides the other items they need to click.
To solve this, I could remove the header when they click in the input field, this will move the inout field to the top and expose the other field they need to click.
Can I do this with css?
HTML:
<header>
This is the element to remove on input click
</header>
<h1>Also remove this on input click</h1>
<div class='content'>
<form>
<input type='text' name='fullname' id='fullname' /> On clicking this, the header and h1 are hidden above, effectively moving this input field to the top of the screen.
</form>
<p>Other info that is currently hidden by the keyboard.</p>
</div>
Thanks