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.
我的宽度设置为:
body { width: 980px; }
但是,在一个页面上,我需要使宽度适合页面(它是一个大表,应该与浏览器允许的一样大。我将如何删除先前设置的宽度?我尝试这样做:
body { width: none!important; }
但没有运气。我需要在这里做什么?
你应该使用 width: auto !important
body { width: auto !important; }