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.
我想知道是否有任何方法可以根据窗口大小使 ngx-datatable 列可见/不可见,类似于引导类 hidden-xs 以在超小屏幕上隐藏内容。
您可以使用媒体查询。 示例: 根据特定宽度为要隐藏的列的 td 分配类名。假设你有一个类名——.768hidables——你可以定义一个 css,如下所示:
@media (max-width: 768px) { .768hidables { display:None; } }