Having an iframe
with content that fits inside, I utilized the overflow:scroll
property to ensure scrollbars are always present. While this solution worked in Firefox and IE, unfortunately it did not have the same effect in Chrome.
#iframeid
{
height:500; width:1150
}
#iframeid::-webkit-scrollbar
{
width: 12px;
overflow-x:scroll;
overflow-y:scroll;
}
However, instead of solving the issue, the code above ended up completely removing the scrollbars. Is there something crucial that I am overlooking?