Hi i searched it a lot but i cannot find any solution.
Actually I want to have image for every HTML section. and it should be responsive.
here is my code
 <section id="portfolio">
    </section>
    <section class="success">
    </section>
and CSS
#portfolio {
  background: url(../img/STS_247650163-Web.jpg);
  background-size: cover;
height:400px;
}
.success {
  background: url(../img/success.jpg);
  background-size: cover;
height:1100px;
}
now if I remove height the images disappear and if add them the images becomes big and ugly.
i tried.. different method but nothing is working
thank you
 
    