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 を使用する必要があります !重要
body { width: auto !important; }