Problems with My Times project

<PLEASE USE THIS TEMPLATE TO HELP YOU CREATE A GREAT POST!>

<Below this line, add a link to the EXACT exercise that you are stuck at.>
https://www.codecademy.com/courses/freelance1-u4/projects/my-times?program_content_id=0152055d515e56bc97115fbfb512ca1c&program_id=22d29783df5823976a1721d968373c35

<Below this line, in what way does your code behave incorrectly? Include ALL error messages.>
How do I make the background-image show complete? It´s shown just the same height than the heading inside the image. Why?Thank you



Replace this line with your code. 
div class="cuerpo">
        <div class="columnlarge">
          <div class="contenido1>">
            <h1>Mother of Three Buys Tuna Steak at Phish Concert. Leaves, "Feeling Funny."</h1>

.columnlarge {
  display: flex;
  max-width: 630px;
  flex-direction: column;
  padding: 20px;
}
.contenido1{
  display:flex;
}
h1{
  background-image: url("https://s3.amazonaws.com/codecademy-content/courses/freelance-1/unit-4/img-story-main.png");
  text-align:center;
  background-image height: 100%;
}

https://www.codecademy.com/courses/freelance1-u4/projects/my-times?program_content_id=0152055d515e56bc97115fbfb512ca1c&program_id=22d29783df5823976a1721d968373c35

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.