So I have few elements in .card class and I want to apply w3-card-4 class to it.
.card
w3-card-4
.card { background-color: #FFFFFF; } .w3-card-4 > .card
There should be no spaces in between
.card.w3-card-4{ background-color:green; }
.w3-card-4 > .card this is used when element of class="card" is direct child of element with class="w3-card-4"
.w3-card-4 > .card
class="card"
class="w3-card-4"
For the html part. you have to include both classes in html too. like this:
<p class="card w3-card-4"> Text Here </p>
You don't have to include it in html if you are adding it through javascript / jQuery.
Copyright © 2021 Jogjafile Inc.
There should be no spaces in between
.w3-card-4 > .card
this is used when element ofclass="card"
is direct child of element withclass="w3-card-4"
For the html part. you have to include both classes in html too. like this:
You don't have to include it in html if you are adding it through javascript / jQuery.