Answers for "h1 css name"

CSS
0

css style all h1 tags

h1 {
  /* add custom styling here */
}
Posted by: Guest on June-12-2021
-1

default CSS settings for h1 tag

h1 { 
  display: block;
  font-size: 2em;
  margin-top: 0.67em;

      margin-bottom: 0.67em;
  margin-left: 0;
  margin-right: 0;

      font-weight: bold;
}
Posted by: Guest on June-06-2021

Browse Popular Code Answers by Language