I'm trying to create a calendar that adjust it's size to the parent div without success. It's working with the Width but not height.
I haven't modified any property of the Fullcalendar lib. I do not want to have fixed height since I want the div/calendar resize to the user screen size.
HTML:
<body>
<div class="div-container">
<div id='calendar'></div>
</div>
</body>
CSS:
.div-container{
width: 90%;
margin: 0 auto;
height: 100px!important;
}
overflow:scroll
to the container. – Louys Patrice Bessette