2015-10-02 108 views
-4

的當我點擊按鈕,我的全畫面如下實現全屏幕覆蓋,只有70%的屏幕

|---------------| 
|---------------| 
|---------------| 
|    | horizontal scroll 
|    | 
|    | 
|    | 

問題是,它佔據了屏幕的只有80%,僅即使它有足夠的數據來覆蓋。

我的CSS類

.full-screen { 
    position: fixed; 
    top: 0px; 
    left: 0px; 
    width: 100%; 
    min-height: 100%; 
    z-index: 700; 
    background: white; 
} 

請指導。

+1

把你的代碼在類似工作的jsfiddle什麼的,這是很難說有什麼實際問題 – thomaux

+0

@Anzeo的應用非常大,如果我把代碼的一部分放在jsfiddle中,它沒有任何問題。 – prashanth

+0

如果你不能提供麻煩的代碼,我們不能幫你。 – rblarsen

回答

0

使用position:fixed;,你可以做到這一點,填補了屏幕:

.full-screen { 
    position: fixed; 
    top: 0; 
    left: 0; 
    right: 0; 
    bottom:0; 
    z-index: 700; 
    background: white; 
} 
+0

我有位置:固定在CSS。 仍未覆蓋全屏 – prashanth

+0

刪除寬度和最小高度並添加右側:0;和底部:0;就是我在答案中所做的。這應該這樣做 – rblarsen

+0

它不工作 – prashanth