I've tried everything but my height: 100% does not work what should I do?
html,
body {
margin: 0px;
height: 100 %;
}
.margin - site {
width: 615px;
margin: 47px auto;
background - color: #fff;
padding: 10px;
word - wrap: break -word;
border - radius: 3px;
display: table;
}
.margin - right {
width: 255px;
height: 100 %;
float: right;
height: -webkit - calc(100 % -100px);
height: -moz - calc(100 % -100px);
height: calc(100 % -100px);
}
<div class="margin-site">
<div class="margin-right">
conteudo right
</div>
conteudo site
</div>