ライトボックスを作成しましたが、css のみでレスポンシブにしたい...
これは、Firefox のすべてのブラウザー execpt でうまく機能します (ほぼ毎回のように)...
FirefoxのCSSでレスポンシブimgを作成する方法が本当にわかりません...
ここに私のcssのフィドルの例: http://jsfiddle.net/qbtyD/7/
.light-box-container {
position: fixed;
display: table;
vertical-align: baseline;
width: 100%;
height: 100%;
top: 0;
left: 0;
margin: 0 auto;
padding: 0 auto;
background: rgba(0,0,0,0.8);
cursor: pointer;
}
.light-box-inner {
position: relative;
display: table-cell;
vertical-align: middle;
margin: 0 auto;
padding: 0 auto;
}
.light-box-image {
position: relative;
text-align: center;
}
.light-box-image img {
position: relative;
width: auto;
max-width: 80%;
height: auto;
max-height: 90%;
margin: 0 auto;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
-webkit-box-shadow: 0px 0px 40px rgba(0,0,0,0.8);
-moz-box-shadow: 0px 0px 40px rgba(0,0,0,0.8);
box-shadow: 0px 0px 40px rgba(0,0,0,0.8);
}