html - What is a good way to make all h tags display as normal text? -
using css not (sass/scss) way make text in h tags display regular text?
the css
allshorthand property resets properties, apartunicode-bidi,direction, initial or inherited value.the
unsetcss keyword combination ofinitial,inheritkeywords. these 2 other css-wide keywords, can applied css property, including css shorthandall. keyword resets property inherited value if inherits parent or initial value if not.
h1, h2, h3, h4, h5, h6 { all: unset; } body { font-family: monospace; font-size: 20px; font-style: italic; font-variant: small-caps; } h1, h2, h3, h4, h5, h6 { all: unset; } <h1>header1</h1> <h2>header2</h2> text
Comments
Post a Comment