Reputation: 1341
I am creating a website that will be used in a tablet mostly if not always in landscape mode. However, when someone taps into an input box the keyboard takes half the size of the screen in landscape mode which is a lot. It is fine is portrait mode but half the screen is way too much. Is there a way to popup smaller screen in landscape mode using CSS or is this something that has to be done from the browser setting
Upvotes: 1
Views: 1151
Reputation: 1635
@jedu you are more user concerned if the user is mostly using the tab or mobile in landscape mode he would have already adjusted it's keyboard size accordingly to be more productive in his task.
The more or less we can do is to make the page appear more accessible in the landscape mode using landscape orientation css by writing media queries.
We can't size the keyboard of the user. But we can prompt a user about changing its keyboard size for more accessibility of the website as a message
Upvotes: 7