CSS 如何将两个类应用于单个元素
我们可以通过使用class属性并用空格分隔每个类来将多个CSS类应用于单个元素。
方法
有两种方法可以将两个CSS类应用于单个元素 –
- 使用class属性 –
<div class="class1 class2">This element has two CSS classes applied to it</div>
- 使用JavaScript –
假设存在一个带有id“paragraph”的p标签,我们希望应用这些类 –
<script>
const paragraph = document.getElementById('paragraph');
paragraph.classList.add('one');
paragraph.classList.add('two');
</script>
示例
<!DOCTYPE html>
<html>
<head>
<title>Multiple Classes</title>
<style>
.one {
color: red;
}
.two {
font-size: 24px;
}
</style>
</head>
<body>
<p class = "one two">Using Class Attribute</p>
<p id = 'paragraph'>Using JavaScript</p>
<script>
const paragraph = document.getElementById('paragraph');
paragraph.classList.add('one');
paragraph.classList.add('two');
</script>
</body>
</html>
说明
-
将上述代码保存在以.html为扩展名的文件中。
-
在 web 浏览器中打开该文件。