Answers for "multiples classes to a html tag"

CSS
13

css multiple classes

//HTML Code
<div class = 'firstClass secondClass'></div>

//CSS Code
.firstClass.secondClass {
  
}
Posted by: Guest on April-02-2020
0

How to make tag to follow multiple class

To specify multiple classes, separate the class names with a space, 
e.g. <span class="left important">. 
This allows you to combine several CSS classes for one HTML element.
Posted by: Guest on December-13-2021

Browse Popular Code Answers by Language