I’ve been cruising through the curriculum and have hit a wall here, which I think may be a bug…
The challenge is to set the height property for a heading tag to 25 px - I’ve tried to do both in the <style>
section as well as adding a style attribute to the <h4>
element in the body, but neither solution will pass the test.
Here’s the challenge prompt and the relevant piece of code, am I doing something wrong here?
Add a height property to the h4 tag and set it to 25px.
<style>
h4 {
text-align: center;
height: 25px;
}
more CSS
</style>