我正在读字体粗细是短手字体属性中的可选值。然而,如果我没有陈述它,它将使所有<h1>Heading one</h1>
<p>First paragraph.</p>
<p>Another paragraph, with <b>bold</b> and <strong>strong</strong>.</p>
,包括Could not install package 'Npgsql.EntityFrameworkCore.PostgreSQL 2.0.1'. You are trying to install this package into a project that targets
'.NETFramework,Version=v4.5.1', but the package does not contain any assembly
references or content files that are compatible with that framework.
和标题元素。有人可以为我澄清这一点。
// This method calls itself "infinitely"
public void useless() {
useless(); // method calls itself (directly)
}
public int factorial(int n) {
if (n <= 1) { // the base condition
return 1;
} else {
return n * factorial(n - 1);
}
}
答案 0 :(得分:1)
在简写字体中,font-size
和font-family
是必需的。其他一切都是可选的。但是,省略的值将设置为初始值,在大多数情况下,这些值是“正常”,而不是“粗体”。标题就是这种情况,强大而粗体的标签也是如此。