In my global.scss
file, I have defined global styles for ul
elements as shown below:
ul {
list-style: none;
margin: 0;
padding: 0;
}
However, I am trying to find a way to style all ul
elements except those within a specific jodit-wrapper
class. Despite attempting the following code snippet, it does not yield the desired result:
ul:not(.jodit-wrapper) {
list-style: none;
margin: 0;
padding: 0;
}
Could you please advise on the correct approach to achieve this?