Хто-небудь знає, що відбувається тут? Я тестував на опері,
дельфіні і фабричному андроїд-браузері. (хоча зараз здається, що
працює над оперою)
Div не змінює розмір, але текст якось скорочується, щоб
поміститися на частині div. Так чи інакше, щоб запобігти цьому?
Щоб було зрозуміло, я намагаюся досягти на мобільному браузері
той самий вигляд, що й у ПК-версії.
Як проблема, здається, з браузерами, як я можу змусити текст
взяти повну ширину DIV? Я спробував встановити тег p до 100% без
успіху.
Div повинен мати цю ширину і вирівнюватися ліворуч від
сторінки.
*Update 1: I tried the following code on a
galaxy s4 (previously tried on s2) and got the same error on opera
mini and dolphin. The error can be visualized online using the
opera mini simulator, you just need to host the
html file somewhere.
*Update 2: I believe the problem exists because
when the webpage is loaded, it is loaded at its normal size
(pixels), so the paragraph only occupies a small part of the page.
Then, the page zooms out so all the content fits the page, but the
text does not spread, it stays in that initial small space.

На ПК, як і повинно бути:

Я скоротив код, наскільки я міг:
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<meta content="" name="keywords" />
<meta content="" name="description" />
<title></title>
</head>
<body>
<div style="width:1000px; margin-left:auto; margin-right:auto;" >
<div style="float:left; width:758px; background-color:aqua;">
Random text Random text Random text Random text Random text Random text Random text Random text
Random text Random text Random text Random text Random text Random text Random text Random text
Random text Random text Random text Random text Random text Random text Random text Random text
Random text Random text Random text Random text Random text Random text Random text Random text
Random text Random text Random text Random text Random text Random text Random text Random text
Random text Random text Random text Random text Random text Random text Random text Random text
Random text Random text .
Random text Random text Random text Random text Random text Random text Random text Random text
Random text Random text Random text .
Random text Random text Random text Random text
Random text Random text
Random text .
</div>
</div>
</body>
</html>
Дякую.