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;
}
許多感謝。它的工作:) – user1907680 2013-04-22 18:11:39
@ user1907680太棒了!請標記爲未來用戶的「最佳答案」。 – Mooseman 2013-04-22 18:12:00
嘿,首先加載頁面時,彈出窗口顯示。相反,我想讓彈出窗口顯示按鈕點擊。 – user1907680 2013-04-22 18:16:47