我有一个固定定位的DIV,但我想在移动设备查看时它是相对的.这是否可能与特定的CSS?
埃里克
CSS
div { position: fixed; } @media only screen and (max-device-width : 480px) { div { position: relative; } }