为什么AppleWebKit / 537.36上的文本段落宽度不是div的100%?

时间:2016-03-14 20:09:11

标签: html css

此问题可能与缩放级别有关。它发生在AppleWebKit / 537.36上。

有时文本段落(p标签)的宽度不是其父div宽度的100%。为什么会这样?

当p标签具有背景颜色时:#FFFFFF,宽度为100%,但如果有背景颜色:透明或没有背景颜色,则宽度不是100%。

请帮帮我。

<html>

<head>
<title>Test</title>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<meta http-equiv="Content-Language" content="fi" />
</head>

<body style="background-color:blue">
<div style="width:600px; margin-left:auto; margin-right:auto; background-color: #FFFFFF;">
<p>This width is not 100% - This width is not 100% - This width is not 100% - This width is not 100%</p>

<p style="background-color:transparent">This width is not 100% - This width is not 100% - This width is not 100% - This width is not 100%</p>

<p style="background-color:#FFFFFF">This width is 100% - This width is 100% - This width is 100% - This width is 100%</p>
</div>
</body>

</html>

0 个答案:

没有答案