Retourner au contenu associé (dépêche : Mozilla 1.2.1 est sorti)
Posté par Pierre Tramo (site web personnel) le 04 décembre 2002 à 08:04. En réponse à la dépêche Mozilla 1.2.1 est sorti. Évalué à 9.
AltStyle によって変換されたページ (->オリジナル) / アドレス: モード: デフォルト 音声ブラウザ ルビ付き 配色反転 文字拡大 モバイル
[^] # Re: Filtrer le flash
Posté par Pierre Tramo (site web personnel) . En réponse à la dépêche Mozilla 1.2.1 est sorti. Évalué à 9.
/* this hides the usual 468x60 Flash banner ads */
embed[type="application/x-shockwave-flash"][width="468"][height="60"] {
display: none !important;
visibility: hidden !important;
}
/* this hides the not so usual but very annoying 728x90 Flash banner ads */
embed[type="application/x-shockwave-flash"][width="728"][height="90"] {
display: none !important;
visibility: hidden !important;
}
ou si on veut le virer completement, il suffit de ne pas spécifier de taille et c'est bon:
embed[type="application/x-shockwave-flash"] {
display: none !important;
visibility: hidden !important;
}