我有一个固定位置的表格。但是当我有移动宽度为ex.425 px的浏览器时,我希望将表单放入具有静态位置的新div中。
我该怎么做?
谢谢!
答案 0 :(得分:1)
将表单放在您想要移动的位置,然后更改css
HTML
<div class="content">
<form >
//your form
</form>
</div>
CSS
form {
position: relative;
}
}
@media only screen and (min-width: 425px) {
form {
position: fixed;
}
}
答案 1 :(得分:0)
@media screen and (max-width: 425px) {
div {
position: static
}
}