當屏幕寬度小於480像素時,我使用以下CSS代碼進行格式化,並且效果很好。如何在CSS中獲取當前屏幕寬度?
@media screen and (min-width: 480px) {
body {
background-color: lightgreen;
}
}
我想獲得當前的寬度計算中使用zoom
喜歡它如下:
@media screen and (min-width: 480px) {
body {
background-color: lightgreen;
zoom: (current screen width)/(480);
}
}
這僅僅是不可能獨自做到這一點在CSS。 –
'zoom'只是IE瀏覽器。現在在CSS中它使用'transform:scale(xx)' – dippas