Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

You can eliminate the horizontal scrollbar on a mobile platform website by setting the viewport meta tag in the head section of the HTML code. Add the following code to the head section of your HTML code:

<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">

This code sets the maximum width of the viewport to be the same as the device width, which means that the content of the website will fit within the screen without the need for a horizontal scrollbar. The user-scalable=0 option disables the user from zooming in or out of the website, preventing the need for horizontal scrolling.