2014-02-26 71 views
1

我想從iframe中刪除(即隱藏)垂直滾動條。我試過使用overflow:hiddenscroll="no",但滾動條仍然出現。刪除iframe中的垂直滾動條(ASP.NET)

這是我曾嘗試:

<iframe name = "iframemc" id="iframemc" scrolling="no" frameborder="0" style="background-color: white; float:none; margin-left:40px; overflow:hidden" runat="server" width="800px" height="620px" ></iframe> 

任何幫助,將不勝感激!謝謝!

+0

原生html寬度/高度屬性不需要px值。 –

回答

1

使用overflow: hidden;相反,auto我覺得就是增加了滾動條:

<iframe name = "iframemc" id="iframemc" scrolling="no" frameborder="0" style="background-color: white; float:none; margin-left:40px; overflow:hidden" runat="server" width="800px" height="620px" ></iframe> 

保持scrolling="no"舊版本瀏覽器。

+0

對不起,我的錯誤,這只是一個錯字。我實際上使用了'overflow:hidden'。仍然沒有工作.. – Mayou

+0

你可能想編輯的問題 - 它應該隱藏,雖然....做其他值像'可見'和'自動'工作呢? – Wilf

1

聽起來好像要溢出-Y:隱藏

摘自另一個答案:

我建議用CSS這樣做。和溢出 - Y:隱藏;

.restricted {width:200px;高度:200像素;溢出-Y:隱藏;}

參考: Hide horizontal scrollbar on an iframe?

+0

我在ASP.NET中沒有這個選項..我只在'style'中有'overflow'選項 – Mayou

+0

你不能在'