您好,欢迎访问一九零五行业门户网

在HTML中为一个元素使用多个CSS类

为了更快地创建css,我们可以给单个html元素赋予多个类,并分别为每个类设置样式。这种方法允许我们管理样式应用的冗余。我们可以将通用样式应用于许多类,而将特定类别的样式应用于特定类别。
语法<tag_name class=class_1 class_2>
example在下面的示例中,我们使用class“varma”的样式来应用于两个段落,而第二个段落应用了secondclass 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>
执行上述脚本后将生成结果。它是文本“欢迎来到tutorialspoint”与两个css样式以及文本“大家好”与单个css样式的组合。example: using javascriptin the following example we are adding two style to an single text by declaring the .bg-blue style and .text-white style.
<!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>
在执行时,脚本生成一个应用了两个css样式的文本输出:“欢迎来到教程点”。
以上就是在html中为一个元素使用多个css类的详细内容。
其它类似信息

推荐信息