没有带有简写字体属性的粗体文本

时间:2018-01-29 07:30:13

标签: html css fonts

我正在读字体粗细短手字体属性中的可选值。然而,如果我没有陈述它,它将使所有<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);
}
}

1 个答案:

答案 0 :(得分:1)

在简写字体中,font-sizefont-family是必需的。其他一切都是可选的。但是,省略的值将设置为初始值,在大多数情况下,这些值是“正常”,而不是“粗体”。标题就是这种情况,强大而粗体的标签也是如此。