Level 61
The point of TailwindCSS is that you should be explicit. So where you have h1 define which size it should be. Also, add leading and tracking if required.
1 like
We can disable all preflights by doing preflight: false in config file, But i wanna only disable the part that said h1-h6 should inherit from the body element :
h1,
h2,
h3,
h4,
h5,
h6 {
font-size: inherit;
font-weight: inherit;
}
If its not possible ok, How do i disable inheritance of element in class="" ?
Please or to participate in this conversation.