隐藏移动设备上的部分网站

时间:2013-09-07 22:17:05

标签: javascript css html5 mobile-browser

我在我的网站上使用部分标签。

这是网站 - http://mk18.web44.net/

如何隐藏名为在移动设备上下订单的部分?

由于

1 个答案:

答案 0 :(得分:1)

将此添加到您的css:

@media screen and (min-width: 0px) and (max-width: 400px) {
    #order{
        display:none;
    }
}