Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在我的网站上使用部分标签。
这是网站 - http://mk18.web44.net/
如何在移动设备上隐藏名为“下订单”的部分?
谢谢
将此添加到您的CSS:
@media screen and (min-width: 0px) and (max-width: 400px) { #order{ display:none; } }