0

Can anyone please explain me why am I getting scrolling bar when I put content inside the div below.

* {
  margin:0;
  padding:0;
}
div {
  top:0;
    position: relative;
    background: url("https://4.bp.blogspot.com/-k8IX2Mkf0Jo/U4ze2gNn7CI/AAAAAAAA7xg/iKxa6bYITDs/s0/HOT+Balloon+Trip_Ultra+HD.jpg") no-repeat;
    background-size: contain;
    padding-bottom: 56.25%;
}
<div>
  <br><br><br><br><br><br>
</div>

If I remove the br tags inside of the div - scroll bar removed as well.

Overflow: hidden - is not an option.

I want to be able use content inside of a div, but so the div will remain the aspect ratio - how can I achieve this, please?

GreyRoofPigeon
  • 17,833
  • 4
  • 36
  • 59
lessismore
  • 23
  • 1
  • 5

3 Answers3

0

Specify the width and height to keep the aspect ratio and add overflow-y:hidden; to remove the scroll bar.

<div>
  <br><br><br><br><br><br>
</div>

CSS

* {
  margin:0;
  padding:0;
}
div {
  top:0;
  width: 300px;
  height: 40px;
    position: relative;
    background: url("https://4.bp.blogspot.com/-k8IX2Mkf0Jo/U4ze2gNn7CI/AAAAAAAA7xg/iKxa6bYITDs/s0/HOT+Balloon+Trip_Ultra+HD.jpg") no-repeat;
    background-size: contain;
    padding-bottom: 56.25%;
    overflow-y:hidden;
}

Hope this helps :)

TidyDev
  • 3,470
  • 9
  • 29
  • 51
0

How about this solution. Inside outer div place inner div with absolute position, because you don't want to lose proportion anyway. Inside inner div place content you want. jsfiddle

<div class="outer">
    <div class="inner">
        <br>
        <br>
        <br>
        <br>
        <br>
        <br>
    </div>
</div>
Vladislav Stanic
  • 795
  • 8
  • 13
  • Thanks! Just came across with this, the same one solution: https://stackoverflow.com/questions/1495407/maintain-the-aspect-ratio-of-a-div-with-css – lessismore Sep 28 '17 at 12:29
0

In this code I set min, max width and height so that width/height wont change whether content is too much or less.This will maintain aspect ratio

* {
  margin:0;
  padding:0;
}
div.bg {
  color: #f00;
  top:0;
  min-width: 200px;
  min-height: 300px;
  max-width: 200px;
  max-height: 300px;
  position: relative;
  background: url("https://4.bp.blogspot.com/-k8IX2Mkf0Jo/U4ze2gNn7CI/AAAAAAAA7xg/iKxa6bYITDs/s0/HOT+Balloon+Trip_Ultra+HD.jpg") no-repeat;
  background-size: cover;
  /*
  padding-bottom: 56.25%;
  */
}
<div class="bg">
  <br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>CONTENT
</div>
<div>ANOTHER CONTENT</div>
krishnar
  • 2,537
  • 9
  • 23