[Vuejs]-How to ignore global css on Nuxtjs?

-1👍

its not possible to ignore global css to perticular page however you can overwrite it by doing !important with css trick like this

<div class="first_class">
   <div class="second_class">
    //Do Something
   </div>
</div>

with css trick

.first_class .second_class {
  //add your css with !important
}

hope this helps

Thanks

Leave a comment