Multiple Classes
HTML elements can belong to more than one class.
To define multiple classes, separate the class names with a space,
e.g. <div class="city main">.
The element will be styled according to all the classes specified.
.objectOne, .objectTwo { /* We will now both be changed */
margin: 0 auto;
}
//HTML Code
<div class = 'firstClass secondClass'></div>
//CSS Code
.firstClass.secondClass {
}
//-----------used in chat App -------
var allChat = document.querySelectorAll('div[class^=chat-people]');
console.log("Found", allChat.length, "div which class starts with “chat-people”.");
intro = document.getElementById('intro-right');
for (var i = 0; i < allChat.length; i++) {
allChat[i].addEventListener('click', function() {
console.clear();
console.log("You clicked:", this.innerHTML);
});
}
.bucket1, .bucket2, .bucket3 {
}
.bucket4, .bucket5, .bucket6 {
}
.social.first {}
To specify multiple classes, separate the class names with a space,
e.g. <span class="classA classB">.
This allows you to combine several CSS classes for one HTML element.
Code Example |
---|
Css :: css border radius first element and last element |
Css :: tailwind css margin auto |
Css :: css accent |
Css :: display flex overflow hidden slider |
Css :: how to back animation in css |
Css :: Simple example of using bootstrap |
Css :: css set styles for input text |
Css :: rgba colors |
Css :: glass style css |
Css :: comentarios en archivo scss |
Css :: css reset code |
Css :: transition css react |
Css :: modern css fonts |
Css :: grid-template-areas |
Css :: divider with text css |
Css :: display css |
Css :: ie showing close icon |
Css :: test typescript |
Css :: how to display a header in the center of the column in css |
Css :: print to pdf setting css for A4 size |
Css :: How to make a pixel in css |
Css :: webkit-scrollbar-button css |
Css :: font size clamp generator |
Css :: css 100vh minus header |
Css :: css all flex properties |
Css :: css animation png |
Css :: learn css |
Css :: what is padding in css |
Css :: animate a position css |
Css :: css background templates |