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.
var section = $('.section'); var width = section.width(); if (width < 960) section.addClass('.section-slim');
谁能看到这有什么问题?我没有得到额外的课程。
删除类名中的点:
section.addClass('section-slim');
更多关于CSS 语法