Fonts In Tables Rendering Inconsistently On Mobile Browsers
I am currently creating a desktop site (http://www.robtest.org.uk) that I want to work well with mobile browsers to alleviate the need to create a separate mobile site. Mobile safa
Solution 1:
Add a viewport tag in the <head>
section of your page, it will help prevent device scaling/zooming and give you a uniform look across mobile devices
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
Post a Comment for "Fonts In Tables Rendering Inconsistently On Mobile Browsers"