Home > Enterprise >  Can I get full height of div tag?
Can I get full height of div tag?

Time:06-02

I have link : http://batdongsana8.com/1/ Seem that left column can not get full 100% height of screen, if i remove some of articles left column , it works fine !

Anyone can help me to figure out this problem ? Thank you very much !

Screenshot Problem : https://i.imgur.com/DEjUiNL.jpg

CodePudding user response:

add height to inherit resolve your issue Learn More Inherit

.containerform {
    background-color: beige;
    margin: 0 auto;
    width: 90%;
    padding-top: 10px;
    height: inherit;
}

CodePudding user response:

You just need to add overflow: auto; to your .col-left class

.col-left {
  float: left;
  background-color: antiquewhite;
  width: 30%;
  height: 100%;
  overflow: auto;
}
  • Related