ScrollBar Hortizontal dans mon Iframe
Salut,
J,ai un IFRame sur mon site et je ne veux dans aucun cas qu'une scrollbar apparaisse hozizontalement, mais verticalement oui ( ou auto ).
Plusieurs sujet traite de cela sur le forum et même des solutions :
Code:
1 2 3
| overflow-x: auto;
overflow-y: hidden;
overflow : -moz-scrollbars-horizontal; |
mais ca marche pas !! , voici mon code :
CSS :
Code:
1 2 3 4 5 6 7 8
| #content{
margin:10px 5px 0px 278px;
background-color:#FFFFFF;
border:1px color:#CC0099;
overflow-x: visible;
overflow-y: visible;
overflow : -moz-scrollbars-horizontal;
} |
HTML
Code:
1 2 3 4
| <div id="content">
<IFRAME name="principal" frameborder="0" SRC="articles.php" WIDTH=669 HEIGHT=470 scrolling="auto">
</IFRAME>
</div> |
Quelqu'un vois el tit probleme ?
Merci