我有一個簡單的模態的div:簡單的CSS規則模式
<div class="modal"></div>
<div class="modal-content"></div>
然後theyr相關的CSS規則:
.modal{position:fixed;background:#444;opacity:0.5;width:100%;height:100%;left:0;right:0;bottom:0;top:0;}
.modal-content{position:fixed;background:#fff;width:auto;height:auto;top:25%;left:25%;right:25%;}
我想那是什麼.modal內容仍然始終圍繞頁面上最大寬度500px;而寬度:自動;
有沒有可能不使用JS?
我添加了,但它的結果不在頁面上:P – sbaaaang
嗨,也嘗試添加頁邊距:0 auto 0 auto 0;對此。現在正常工作在我身邊。 –
nope ...我在FF6上.. .modal-content {position:fixed; background:#fff; margin:0 auto 0 auto 0; width:900px; right:0; left:0; height:auto ; top:25%;}它不起作用(不居中) – sbaaaang