Mac IE5にスタイルを適用しないようにする |
ポイント | /*\*/ Mac IE5以外で適用したいスタイル /* */ |
---|---|
説 明 | Mac IE5では/*\*/とすると以後コメントとして処理されてしまうバグがあります。これを利用して、この/*\*/〜/* */内にMac IE5以外で指定したいスタイルを指定します。 |
サンプル | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"> <html lang="ja"> <head> <meta http-equiv="Content-Type" content="text/html; charset=Shift_JIS"> <meta http-equiv="Content-Style-Type" content="text/css"> <title>サンプル</title> <style type="text/css"><!-- body { background-color:#afffbf; color:blue; /*\*/ background-color:black; color:red; /* */ } --></style> </head> <body> <p>Mac IE5と、それ以外でスタイルを分けます。</p> </body> </html> |
補足説明 | なし |
■サンプルを実行する >>実行 ■各ブラウザでの動作結果を見る >>View! |