Я пытаюсь создать веб -сайт с нуля. По какой -то причине мой CSS работает на моем H1 , но не H2 . Насколько я могу судить, код для обоих точно одинаково. < /P>
h1 { /* heading one base formatting*/
text-align: center;
font-size:calc(12px + 5vw);
text-transform: uppercase;
color: #F2E3C2;}
h2 { /*heading two */
text-align: center;
font-size: calc(12px + 5vw); /* going to have to test this and adjust relative sizes */
text-transform: uppercase;
color: #F2E3C2;}< /code>
Lemongrass
an experimental online zine
Я пытаюсь создать веб -сайт с нуля. По какой -то причине мой CSS работает на моем H1 , но не H2 . Насколько я могу судить, код для обоих точно одинаково. < /P>
[code] h1 { /* heading one base formatting*/ text-align: center; font-size:calc(12px + 5vw); text-transform: uppercase; color: #F2E3C2;}
h2 { /*heading two */ text-align: center; font-size: calc(12px + 5vw); /* going to have to test this and adjust relative sizes */ text-transform: uppercase; color: #F2E3C2;}< /code>