CSS 如何更改字体大小
CSS,或层叠样式表,是控制网页视觉呈现的一个强大工具。其中一个方面是能够调整页面上文本元素的字体大小。这可以通过使用font-size属性来完成。
要为特定元素设置特定的字体大小,我们可以结合使用类或ID选择器以及font-size属性。
在本文中,我们将看到多个示例来使用CSS更改字体大小 –
通过使用font-size属性,我们可以为特定的元素或类设置特定的字体大小。例如,要将 元素的字体大小设置为18个像素,我们将使用以下代码 –
P{
font-size:18px;
}
示例
<html>
<head>
<title>How to change the font size using CSS</title>
<style>
.p1{
font-size:20px;
}
</style>
</head>
<body>
<h1>Welcome to tutorialspoint</h1>
<p class="p1">Change the font size using CSS</p>
<p>This is normal paragraph</p>
</body>
</html>
我们也可以使用font-size属性设置相对字体大小,比如larger或smaller,它将根据父元素的字体大小来改变字体大小。为了实现这一点,我们将使用以下代码 –
P{
font-size:larger;
}
示例
<html>
<head>
<title>How to change the font size using CSS</title>
<style>
.p1{
font-size:large;
}
.p2{
font-size:small;
}
</style>
</head>
<body>
<h1>Welcome to tutorialspoint</h1>
<p class="p1">Change the font size using CSS - Large font</p>
<p class="p2">Change the font size using CSS - Small font</p>
<p>This is normal paragraph</p>
</body>
</html>
另一种针对特定单词的方法是使用:not CSS选择器。这允许选择元素中的所有单词,除了该独特的单词。例如 –
CSS
p span:not(.unique) {
font-size: 18px;
}
HTML
<p>This is a <span class="not-unique">not unique</span> word, but this <span class="not-unique">word</span> is <span class="unique">unique</span>.</p>
示例
<html>
<head>
<title>How to change the font size using CSS</title>
<style>
p span:not(.unique) {
font-size: 20px;
}
</style>
</head>
<body>
<p>Lorem Ipsum is simply dummy text of <span class="notunique">not unique</span> the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, <span class="not-unique">not unique</span> when an unknown printer took a galley of type and scrambledg,</p>
</body>
</html>
在CSS中,font-size属性允许对网页上的文本元素进行精确控制。无论我们是想为特定的元素设置特定的字体大小,根据父元素的字体大小调整字体大小,还是针对特定的单词进行设置,CSS都提供了必要的工具来实现这一目标。