为什么css重置后锚标签的字体大小为18像素?

时间:2017-02-20 01:17:37

标签: html css

css重置后,锚标签的font-size出现为18px,而段落出现为19px。这是如何计算的,为什么它们不同?



/* reset browser styles */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp,small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1.2;
}
ol { 
	padding-left: 1.4em;
	list-style: decimal;
}
ul {
	padding-left: 1.4em;
	list-style: square;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

<a href='#'>Anchor tag</a>
<p>Paragraph</p>
&#13;
&#13;
&#13;

enter image description here

enter image description here

3 个答案:

答案 0 :(得分:2)

锚标记的高度(默认为内联元素)是文本字符的高度。这是从字体指标上升到下降底部的顶部。根据所涉及的字体,可能大于,等于或小于字体大小,但与其成比例。

段落的高度,默认情况下是一个仅包含内联框的块容器元素,是它包含的行框堆栈行高的总和的高度。因为在您的情况下它只包含一个线框,其高度是该线框的线高。由于行高默认与字体大小成比例,因此段落的高度也与字体大小成比例,但其比例由用户代理样式表设置,而不是由字体度量设置。

答案 1 :(得分:1)

那不是font-size,这就是盒子的高度。

两种情况下字体大小均为16像素。

答案 2 :(得分:0)

您的图片显示的是元素的宽度和高度,而不是字体大小。作为块元素,段落可能更大。