How can I hide the horizontal scrolling bar in an iframe inside a div while keeping the vertical one activated?
Snippet of HTML Code
<div id="rc">
<div>
<iframe class="defRC" src="url"></iframe>
</div>
<div class="clear">
</div>
I've attempted to apply CSS code, but it has not been successful.
.defRC {
overflow-y: hidden;
width: 1000px;
height: 600px;
}