Tell us what’s happening:
I tried to complete the challenge. No matter what kind of browser I tried I ran into the same error. I rechecked the px value of h6 with the web developer kit and it shows 14px assigned as css value.
Update: CLOSED I’ve set the css for h1 - h6 to
h1/2/3 …{
font-size:14px;
}
That solution was accepted from the system.
Your code so far
<style>
#head1{
font-size: 68px;
}
#head2{
font-size: 52px;
}
#head3{
font-size: 40px;
}
#head4{
font-size: 32px;
}
#head5{
font-size: 21px;
}
#head6{
font-size: 14px;
}
</style>
<h1 id="head1">This is h1 text</h1>
<h2 id="head2">This is h2 text</h2>
<h3 id="head3">This is h3 text</h3>
<h4 id="head4">This is h4 text</h4>
<h5 id="head5">This is h5 text</h5>
<h6 id="head6">This is h6 text</h6>
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:81.0) Gecko/20100101 Firefox/81.0
.
Challenge: Set the font-size for Multiple Heading Elements
Link to the challenge: