我创建两个span元素并将它们添加到DOM,其中visibility = hidden。 将两个span元素添加到DOM后,我得到两个元素的宽度和高度。
令人惊讶的是,宽度和高度都不同。
两个范围内的text,font-size,font-family都相同。 可能是造成尺寸差异的原因?
var sp1 = goog.dom.createDom('span', null);
sp1.innerText = text;
sp1.style.fontSize = "60px";
sp1.style.fontFamily = family;
sp1.style.visibility = "hidden";
goog.dom.appendChild(document.body, sp1);
var sp2 = goog.dom.createDom('span', null);
sp2.innerText = text;
sp2.style.fontSize = "60px";
sp2.style.fontFamily = family;
sp2.style.visibility = "hidden";
goog.dom.appendChild(document.body, sp2);
var sz1 = goog.style.getSize(sp1);
var sz2 = goog.style.getSize(sp2);
assert(sz1 == sz2)
页面的HTML
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link type="text/css" rel="stylesheet" href="ff.css">
<style>
#id3{
/*font-family: abracadabra, Orator W01 Slanted, Alpha Jazz W00 Regular;*/
font-family: abracadabra, Orator W01 Slanted;
}
#id4{
font-family: Alpha Jazz W00 Regular, Orator W01 Slanted, Times New Roman, sans-serif;
}
</style>
<title>Web Fonts</title>
</head>
<body>
<div id="id1">1. Quick Brown Fox Jumps over the Lazy Dog</div>
<div id="id2">2. Quick Brown Fox Jumps over the Lazy Dog</div>
<div id="id3">3. Quick Brown Fox Jumps over the Lazy Dog</div>
<div id="id4">4. Quick Brown Fox Jumps over the Lazy Dog</div>
<div id="test1" style="position: absolute; top: 0px; z-index: 2; width: auto; right: 0px; background-color: rgb(255, 0, 0); display: none;">
<div style="border-bottom-width: 5px; border-bottom-style: solid; border-bottom-color: rgb(8, 12, 18); padding: 10px 5px;">
<div style="float: left; background-image: url(logo.png); padding-left: 25px; color: rgb(0, 0, 0); font-size: 18px; background-position: 0% 50%; background-repeat: no-repeat no-repeat;">test</div>
<div style="float: right;"><img src="logo.png" style="margin: 0px;"></div>
<div class="clear"></div>
</div>
<div id="test2"></div>
<div id="test3"></div>
</div>
</div>
<span style="font-size: 60px; font-family: Helvetica; visibility: hidden;">3. Quick Brown Fox Jumps over the Lazy Dog</span>
<span style="font-size: 60px; font-family: Helvetica; visibility: hidden;">3. Quick Brown Fox Jumps over the Lazy Dog</span>
</body>
</html>
问题中的跨度是html文档末尾的两个跨度
大小1 =(1217,67)
秒的大小=(1267,136)
答案 0 :(得分:1)
如果它们位于不同大小的元素旁边(例如,在div旁边而不是在它们各自的单独行上),它们将是不同的大小,因为它们是内联元素而不是块级元素。
答案 1 :(得分:1)
感谢您的HTML。
考虑一下:为这些跨度设置的字体大小非常大,当窗口不够宽时,跨度内的文本开始换行。
默认情况下,Spans有display:inline;
,当包装时,两个文本将显示为一个BUT,具有不同的包装,因为第二个文本在第一个文本之后立即继续,并且其文本很可能在另一个地方被打破。
如果为这些跨度设置display:block;
,则应该没有区别。