スマートフォンで自分の Web サイトの CSS を 1 つ無視したいと考えています。
無視したいCSSは次のとおりです。
a[href="http://localhost/wordpress/ireland/"], a[href="http://localhost/wordpress/france/"], a[href="http://localhost/wordpress/spain/"], a[href="http://localhost/wordpress/portugal/"], a[href="http://localhost/wordpress/canary-islands/"], a[href="http://localhost/wordpress/africa/"], a[href="http://localhost/wordpress/central-america/"], a[href="http://localhost/wordpress/indonesia/"], a[href="http://localhost/wordpress/carribean/"]{
pointer-events: none;
cursor: default;
}
多分私はこれを使用する必要があります:
@media only screen and (min-device-width : 320px) and (max-device-width : 480px) {
/* Styles */
}
よくわかりません、助けてくれてありがとう!
編集 :
@media (min-width: 600px){
a[href="http://localhost/wordpress/ireland/"], a[href="http://localhost/wordpress/france/"], a[href="http://localhost/wordpress/spain/"], a[href="http://localhost/wordpress/portugal/"], a[href="http://localhost/wordpress/canary-islands/"], a[href="http://localhost/wordpress/africa/"], a[href="http://localhost/wordpress/central-america/"], a[href="http://localhost/wordpress/indonesia/"], a[href="http://localhost/wordpress/carribean/"]{
pointer-events: auto;
cursor: default;
}
}