I'm trying to create 2 columns, each occupying width of 50%. I need the column height to stretch to the full height of the screen, even when empty, so I can display the backfround color. I tried adding position: absolute but am having mixed results where only one column appears
My HTML
.lcolmn {
width: 50%;
height: 100%;
background-color: red;
float: left;
}
.rcolmn {
width: 50%;
height: 100%;
background-color: blue;
float: left;
}
.wrapper {
background: green;
margin: 0;
padding: 0px;
}
<div class="wrapper">
<div class="lcolmn">
<div class="lcontent"></div>
</div>
<div class="rcolmn"></div>
</div>