$("br").remove();
我知道以上......
但是,如何指定上述代码在@media(max-width:700px) and (min-width:100px)
之间运行..
答案 0 :(得分:4)
JS Fiddle(请注意,小提琴的最小宽度为200px,因此小提琴可以达到它...)
@media only screen and (min-width: 100px) and (max-width: 700px) {
br {
display: none;
}
}