Since discovering semantic-ui a few days ago, I've been impressed and have decided to switch my app from Bootstrap 3 to semantic-ui.
I could use some assistance here. I'm attempting to split the body of the page into two parts. I would like the height of the two divs to be in percentages, specifically 85% and 15%, totaling 100%. However, for some reason, it's not working as expected.
body {
height: 100%;
width: 100%;
}
#div1 {
height: 85% !important;
border: 1px solid #000000;
}
#div2 {
height: 15% !important;
}
Could someone point out what I might be doing wrong? This method worked fine in bootstrap. Any insights on this issue would be greatly appreciated!
Thank you in advance, Praney