Consider this example: Manually I adjusted the zoom of the body to 60% so that the div #content fits horizontally on the screen (The div #content should not wrap or have scroll)
body{
zoom:60%
}
#content{
overflow-x: hidden;
white-space: nowrap;
}
<div id="content">
THIS CONTENT HAS TO FIT HORIZONTALLY ON SCREEN, THIS CONTENT CAN'T WRAP NOR SCROLL BLA BLA BLA BLA BLA BLA BLA
</div>
How can I zoom out or make the content smaller so that it automatically adjusts to the width of the screen? Can you give me an example or direct me to a tutorial?
I've been reading about @ViewPort and the Jquery scale function but it does not work for me.