I have made some container classes in CSS which are quite large. One of my divs uses this container class, however I would like to change the padding from 10px; to 0px;. I do not want to create a whole new class for this. What is the most efficient way to do this?
An example of my div in html
<div class="my-container">
</div>
An example of my container class
.my-container
{
lots of fields...
padding:10px;
}
An example of what I want without creating a new class
.my-container
{
lots of fields...
padding:0px;
}