I currently have an iframe
embedded on www.example.com that is linked to support.example.com (which is a CNAME to a foreign domain).
To ensure the contained webpage fits perfectly without needing any scrollbars, I automatically adjust the height of my iframe.
Although this method works flawlessly on Firefox and IE by using
<iframe ... scrolling="no"></iframe>
, webkit browsers such as Safari and Chrome still show a grayed-out vertical scrollbar even when it's not necessary.
Is there a way to hide this scrollbar specifically for webkit browsers?