--- title: ':not()' slug: 'Web/CSS/:not' tags: - سی اس اس - شبه کلاس - لایه - مرجع - وب translation_of: 'Web/CSS/:not' ---
not()
CSS pseudo-class:
همه عناصر را انتخاب میکند بجز عناصری که به عنوان ورودی به این کلاس داده شود. از آنجایی که این کلاس از انتخاب عناصر خاصی جلوگیری می کند، به عنوان negation pseudo-class شناخته می شود./* paragraph همه عناصر را انتخاب میکند بجز عنصر */ :not(p) { color: blue; }
Notes:
:not(*)
matches any element which is not an element, so the rule will never be applied.#foo:not(#bar)
will match the same element as the simpler #foo
, but has a higher specificity.:not(.foo)
will match anything that isn't .foo
, including {{HTMLElement("html")}} and {{HTMLElement("body")}}.body :not(table) a
will still apply to links inside of a table, since {{HTMLElement("tr")}} will match with the :not()
part of the selector.ورودیهای شبهکلاس ()not:
با ویرگول از یکدیگر جدا میشود.
The ability to list more than one selector is experimental and not yet widely supported.
{{csssyntax}}
<p>این عنصر، عنصر پاراگراف است.</p> <p class="fancy">من چقدر خوبم!</p> <div>این عنصر، عنصر پاراگراف نیست.</div>
.fancy { text-shadow: 2px 2px 3px gold; } /* نیستند `fancy` که دارای کلاس <p> ِتمام عنصار */ p:not(.fancy) { color: green; } /* <p> همه عناصر بجز عنصر */ body :not(p) { text-decoration: underline; } /* <span> یا <div> همه عناصر بجز عناصر */ body :not(div):not(span) { font-weight: bold; } /* را دارا هستند `fancy` یا `crazy` همه عناصر بجز عناصری که کلاسهای */ /* توجه داشته باشید که این نوع نوشتار هنوز پشتیبانی نمیشود. */ body :not(.crazy, .fancy) { font-family: sans-serif; }
{{EmbedLiveSample('Example')}}
Specification | Status | Comment |
---|---|---|
{{SpecName('CSS4 Selectors', '#negation', ':not()')}} | {{Spec2('CSS4 Selectors')}} | Extends its argument to allow some non-simple selectors. |
{{SpecName('CSS3 Selectors', '#negation', ':not()')}} | {{Spec2('CSS3 Selectors')}} | Initial definition. |
{{Compat("css.selectors.not")}}