Why is my H2 Tag not working in Laravel? I have tried everything from deleting the tailwind css file and nothing is working

  Kiến thức lập trình

I don’t know why but Laravel seems to be pushing its own css file into my site, which is fine however they have a section in the css like this:

h1,h2,h3,h4,h5,h6 {
    font-size: inherit;
    font-weight: inherit
}

Before you get upset, I did try to blockquote the code, and the editor would not allow me to do so.

I deleted app.css as a test and it still brought over this app-cNy9yCjt.css file. I cleared the cache and did everything I could think of. If I could just edit that line out of the css that would be ideal but it appears its part of tailwind. How do I make it so my pages ignore the tailwind css and only use its own defined css file for formatting?

LEAVE A COMMENT