2013-04-22 172 views
2

我正在彈出框,我有一個頁面,其中我點擊一個按鈕彈出一個框。問題是彈出不在屏幕的中心。我必須使頁面跨瀏覽器兼容。CSS跨瀏覽器居中

這是我的代碼。

CSS:

.popup{ 
    /* css3 drop shadow */ 
    -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5); 
     -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5); 
    /* css3 border radius */ 
    -webkit-border-radius: 5px; 
     -moz-border-radius: 5px; 
    background:#eee; 
    /* styling of the dialog box, i have a fixed dimension for this demo */ 
    width:50%; 
    /* make sure it has the highest z-index */ 
    clear:both; 
    height:240px; 
    position:relative; 
    z-index:5000; 
    /* hide it by default */ 
    display:none; 
} 

回答

4

中心的水平和垂直:

.popup{ 
    -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5); 
     -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5); 
      box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5); 
    -webkit-border-radius: 5px; 
     -moz-border-radius: 5px; 
      border-radius: 5px; 
    background: #eee; 
    width: 50%; 
    height: 240px; 
    z-index: 5000; 
    position: absolute; 
    left: 50%; 
    top: 50%; 
    margin-left: -25%; 
    margin-top: -120px; 
    clear: both; 
// display: none; 
} 

小提琴:http://jsfiddle.net/AwCWs/

+0

許多感謝。它的工作:) – user1907680 2013-04-22 18:11:39

+0

@ user1907680太棒了!請標記爲未來用戶的「最佳答案」。 – Mooseman 2013-04-22 18:12:00

+0

嘿,首先加載頁面時,彈出窗口顯示。相反,我想讓彈出窗口顯示按鈕點擊。 – user1907680 2013-04-22 18:16:47