Skip to main content

你用过媒体查询吗?

用过,写了个栅格系统用途到了媒体查询

/*大于768px*/
@media (min-width: 768px) {
...;
}

/*小于768px*/
@media (max-width: 768px) {
...;
}