在 HTML 中为一个元素使用多个 CSS 类
为了更快速地创建 CSS,我们可以给单个 HTML 元素分配多个类,并分别设置每个类的样式。此方法使我们能够管理样式应用程序的冗余。我们可以将通用样式应用于多个类和特定的类特定样式。
语法
<tag_name class="class_1 class_2">
示例
在以下示例中,我们将类“Varma”的样式应用于两个段落,而将第二类 varma1 的样式应用于第二段落。
<!DOCTYPE html> <html> <style> .varma { font-size: larger; margin-bottom: 35px; background-color: lightgreen; } .varma1 { color: red; } </style> <body> <p class="varma"> Hello Everyone. </p> <p class="varma varma1"> Welcome to Turorialspoint. </p> </body> </html>
执行后,上述脚本将生成结果。它是带有两个 CSS 样式的文本“welcome to tutorialspoint”和带有单个 css 的文本“hello everyone”。
示例:使用 javascript
在以下示例中,我们通过声明 .bg-blue 样式和 .text-white 样式将两种样式添加到单文本。
<!DOCTYPE html> <html> <style> .bg-blue { background-color: lightgreen; } .text-white { color: red; } </style> <body> <div id="varma">Welcome To Tutorialspoint</div> <script> const box = document.getElementById('varma'); box.classList.add('bg-blue', 'text-white'); </script> </body> </html>
在执行时,脚本会生成一个输出文本“welcome to tutorialspoint”,并应用两个 css。
广告