最佳答案
您可以使用媒体查询来执行此操作.
CSS
div {
position: fixed;
}
@media only screen and (max-device-width : 480px) {
div {
position: relative;
}
}