Since the flavor
class selector already has the properties you want, just add the dessert
class name to it.
.flavor {
text-align: left;
width: 75%;
}
Since the flavor
class selector already has the properties you want, just add the dessert
class name to it.
.flavor {
text-align: left;
width: 75%;
}
I had an issue with this one too. Add a comma between the classes.
Example:
.class-one,.class-two{
text-align: left;
}
Also, it makes it more clear for people reading if you explain what you’re having problems with at the beginning of your post in the future
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.