The paragraph will fill th
For android and small screens on default navigator, the paragraph is taken the device-width as p->max-width.
In my case I've solved with viewport and some javascript:
//NOTE: Take android boolean var from user-agent in request
var screenWidth=window.screen.width;
if (screenWidth<600 && android) {
var node = document.createElement('meta');
node.name="viewport";
node.content="initial-scale=0.1, maximum-scale=3";
$("head").append(node);
}
This is working for all my pages with some media queries for different dpi & device width height.