自己レスです。
> @charset "Shift_JIS"; > td{ > background-color:#fbfbfb !important; > background-image:none !important; > }
これだと、テーブルの中の白抜き文字が見えないですね。 今頃気がつきました。さすが良く分かってない→自分 なので、下記に変えてみました。
@charset "Shift_JIS"; td{ color:#000 !important; background-color:#fbfbfb !important; background-image:none !important; } a:link,a:link *{ color:blue !important; } a:visited,a:visited *{ color:purple !important; } |