0
我無法猜測下面的HTML爲什麼會在Chrome移動設備中以較小的字體顯示兩個<p>
元素 - 唯一的區別似乎是元素的內容。沒有CSS,只是默認的瀏覽器呈現。這是一個錯誤?這種行爲實際上是有原因的嗎?完全困惑於此,任何幫助表示讚賞。Chrome mobile中奇怪的字體大小問題
以下是HTML代碼和you can see it online here。使用Chrome移動瀏覽器查看問題。我看到的渲染看起來是這樣的:
<!DOCTYPE html>
<html>
<head>
<title>Test page</title>
</head>
<body>
<h1>Test page</h1>
<p>
Testing</p>
<p>Testing
Testing</p>
<p>Testing
Testing
Testing</p>
<p>Testing
Testing
Testing
Testing</p>
<p>
<a href="#">Testing</a>
</p>
<p><a href="#">Testing</a>
<a href="#">Testing</a></p>
<p><a href="#">Testing</a>
<a href="#">Testing</a>
<a href="#">Testing</a></p>
<p><a href="#">Testing</a>
<a href="#">Testing</a>
<a href="#">Testing</a>
<a href="#">Testing</a></p>
<p><a href="#">Testing</a>
Testing</p>
<p><a href="#">Testing</a>
<a href="#">Testing</a>
Testing</p>
<p><a href="#">Testing</a>
<a href="#">Testing</a>
<a href="#">Testing</a>
Testing</p>
<p><a href="#">Testing</a>
<a href="#">Testing</a>
<a href="#">Testing</a>
<a href="#">Testing</a>
Testing</p>
<p><a href="#">Testing</a>
<a href="#">Testing</a>
<a href="#">Testing</a>
<a href="#">Testing</a>
Testing
Testing</p>
</body>
</html>
順便說一下,我在Android中使用Chrome版本46.0.2490.76,在Samsung Galaxy S4中。 – ozarfreo