国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

目錄
How to Use :has() to Style Parent Elements
Common Use Cases for :has() in Real Projects
Browser Support and Fallbacks
Final Notes on Using :has() Effectively
首頁 web前端 css教程 關(guān)于:has()父級選擇器的實用CSS教程

關(guān)于:has()父級選擇器的實用CSS教程

Jul 05, 2025 am 12:46 AM

CSS現(xiàn)在可以通過:has()偽類實現(xiàn)根據(jù)子元素反向選擇父元素。1. 語法為parent:has(child),例如div:has(img)可對包含圖片的div添加邊框;2. 支持鏈?zhǔn)綏l件如section:has(h1, .highlight);3. 常見用途包括根據(jù)視頻、側(cè)邊欄組件等調(diào)整布局;4. 當(dāng)前支持Chrome 105 、Safari 15.4 、Edge 106 ,F(xiàn)irefox暫不支持需提供后備方案;5. 使用時建議保持條件簡潔以避免性能問題。

A practical CSS tutorial on the :has() parent selector

Yes, CSS can finally target parent elements based on their children — and it’s all thanks to the :has() pseudo-class. This selector lets you style a parent element if it contains a specific child or match a certain condition. It’s a game-changer because for years, we’ve only been able to go from parent to child, never the other way around.

A practical CSS tutorial on the :has() parent selector

Now that major browsers like Chrome and Safari support :has(), it's time to see how it works in real use cases.

A practical CSS tutorial on the :has() parent selector

How to Use :has() to Style Parent Elements

The basic syntax looks like this:

parent:has(child) {
  /* styles here */
}

For example, if you want to add a border to a <div> that contains an <img src="/static/imghw/default1.png" data-src="https://img.php.cn/upload/article/000/000/000/175164761778650.jpeg" class="lazy" alt="關(guān)于:has()父級選擇器的實用CSS教程" >, you'd write:

A practical CSS tutorial on the :has() parent selector
div:has(img) {
  border: 2px solid #333;
}

This means any div with an image inside will get that border. You're not styling the image — you're styling its container, which was tricky before without JavaScript.

You can also chain multiple selectors inside :has():

section:has(h1, .highlight) {
  background-color: #f0f0f0;
}

This section gets a light gray background if it has either an h1 or an element with the class .highlight.


Common Use Cases for :has() in Real Projects

Here are some situations where :has() really shines:

  • Styling article containers differently when they include videos

    .article:has(video) {
    padding: 0;
    }
  • Adjusting layout if a sidebar contains a specific widget

    .sidebar:has(.newsletter-signup) {
    background-color: #fff8e7;
    }
  • Adding icons next to links that open in new tabs
    You can target anchor tags with a [target="_blank"] attribute:

    a[target="_blank"]:has(svg) {
    padding-right: 10px;
    }

These examples show how :has() helps reduce extra classes or JavaScript just to apply conditional styling based on content.


Browser Support and Fallbacks

Right now, :has() works in:

  • Chrome 105
  • Safari 15.4
  • Edge 106

But it’s not yet supported in Firefox (as of early 2025), so you need to plan accordingly.

If you're building a production site, consider these options:

  • Use :has() but provide a fallback style that doesn’t rely on it

  • Detect browser support with @supports:

    @supports selector(:has(*)) {
    /* styles using :has() */
    }
  • For unsupported browsers, fall back to adding a class via JavaScript:

    document.querySelectorAll('div').forEach(div => {
    if (div.querySelector('img')) {
      div.classList.add('has-img');
    }
    });

Keep in mind that even though :has() is powerful, it's still somewhat experimental. So test carefully across browsers.


Final Notes on Using :has() Effectively

It might be tempting to overuse :has(), especially since it opens up new possibilities. But keep your selectors simple and avoid deeply nested conditions. For example:

.container:has(.active):has(.highlight):has(ul)

That’s valid, but hard to read and debug.

Stick to one or two conditions at most. Also, remember that :has() can slow things down a bit because the browser has to look inside elements to check for matches.

So while it's exciting and useful, treat it like any performance-sensitive feature — use it wisely.

基本上就這些。

以上是關(guān)于:has()父級選擇器的實用CSS教程的詳細(xì)內(nèi)容。更多信息請關(guān)注PHP中文網(wǎng)其他相關(guān)文章!

本站聲明
本文內(nèi)容由網(wǎng)友自發(fā)貢獻,版權(quán)歸原作者所有,本站不承擔(dān)相應(yīng)法律責(zé)任。如您發(fā)現(xiàn)有涉嫌抄襲侵權(quán)的內(nèi)容,請聯(lián)系admin@php.cn

熱AI工具

Undress AI Tool

Undress AI Tool

免費脫衣服圖片

Undresser.AI Undress

Undresser.AI Undress

人工智能驅(qū)動的應(yīng)用程序,用于創(chuàng)建逼真的裸體照片

AI Clothes Remover

AI Clothes Remover

用于從照片中去除衣服的在線人工智能工具。

Clothoff.io

Clothoff.io

AI脫衣機

Video Face Swap

Video Face Swap

使用我們完全免費的人工智能換臉工具輕松在任何視頻中換臉!

熱工具

記事本++7.3.1

記事本++7.3.1

好用且免費的代碼編輯器

SublimeText3漢化版

SublimeText3漢化版

中文版,非常好用

禪工作室 13.0.1

禪工作室 13.0.1

功能強大的PHP集成開發(fā)環(huán)境

Dreamweaver CS6

Dreamweaver CS6

視覺化網(wǎng)頁開發(fā)工具

SublimeText3 Mac版

SublimeText3 Mac版

神級代碼編輯軟件(SublimeText3)

如何僅在某些頁面上包括CSS? 如何僅在某些頁面上包括CSS? Jun 11, 2025 am 12:01 AM

選擇性包含CSS在特定頁面上的方法有三種:1.內(nèi)聯(lián)CSS,適用于不常訪問或需要獨特樣式的頁面;2.使用JavaScript條件加載外部CSS文件,適合需要靈活性的情況;3.服務(wù)器端包含,適用于使用服務(wù)器端語言的場景。這種方法可以優(yōu)化網(wǎng)站性能和可維護性,但需平衡模塊化與性能。

Flexbox與網(wǎng)格:了解CSS布局的關(guān)鍵差異 Flexbox與網(wǎng)格:了解CSS布局的關(guān)鍵差異 Jun 10, 2025 am 12:03 AM

flexboxisidealforone-dimensionAllayouts,while gridsuitStwo,complex layouts.useflexboxforaligningItemsinasingLeaxisAndGridForRidForPreciseconcontroloverroverroverroverroverroverroverrowsandsininintricatientricatedesigns。

使用HTML彈出案創(chuàng)建自動關(guān)閉通知 使用HTML彈出案創(chuàng)建自動關(guān)閉通知 Jun 10, 2025 am 09:45 AM

HTML彈出屬性將元素轉(zhuǎn)換為頂層元素,可以使用按鈕或JavaScript打開和關(guān)閉??梢詫棾霭格g回多種方式,但是沒有選擇自動關(guān)閉它們。 preethi有一種技術(shù),你可以

什么是'渲染障礙CSS”? 什么是'渲染障礙CSS”? Jun 24, 2025 am 12:42 AM

CSS會阻塞頁面渲染是因為瀏覽器默認(rèn)將內(nèi)聯(lián)和外部CSS視為關(guān)鍵資源,尤其是使用引入的樣式表、頭部大量內(nèi)聯(lián)CSS以及未優(yōu)化的媒體查詢樣式。1.提取關(guān)鍵CSS并內(nèi)嵌至HTML;2.延遲加載非關(guān)鍵CSS通過JavaScript;3.使用media屬性優(yōu)化加載如打印樣式;4.壓縮合并CSS減少請求。建議使用工具提取關(guān)鍵CSS,結(jié)合rel="preload"異步加載,合理使用media延遲加載,避免過度拆分與復(fù)雜腳本控制。

如何在無花果中使用Lotties 如何在無花果中使用Lotties Jun 14, 2025 am 10:17 AM

在接下來的教程中,我將向您展示如何在無花果中創(chuàng)建Lottie動畫。我們將使用兩種彩色設(shè)計來超越如何在無花果上進行動畫,然后向您展示如何從Figma到Lottie動畫。您只需要免費無花果

打破邊界:用(s)CSS構(gòu)建湯姆拼圖 打破邊界:用(s)CSS構(gòu)建湯姆拼圖 Jun 13, 2025 am 11:33 AM

我們對其進行了測試,事實證明,至少在低級邏輯和拼圖行為時,Sass可以替換JavaScript。除了地圖,混音,功能和大量數(shù)學(xué)外,我們都設(shè)法使我們的Tangram難題栩栩如生,沒有J

外部與內(nèi)部CSS:最好的方法是什么? 外部與內(nèi)部CSS:最好的方法是什么? Jun 20, 2025 am 12:45 AM

thebestapphachforcssdepprodsontheproject'sspefificneeds.forlargerprojects,externalcsSissBetterDuoSmaintoMaintainability andReusability; forsMallerProjectsorsingle-pageApplications,InternaltCsmightBemoresobleable.InternalCsmightBemorese.it.it'sclucialtobalancepopryseceneceenceprodrenceprodrenceNeed

我的CSS必須在較低的情況下嗎? 我的CSS必須在較低的情況下嗎? Jun 19, 2025 am 12:29 AM

否,CSSDOESNOTHAVETOBEINLOWERCASE.CHOMENDENS,使用flowercaseisrecommondendendending:1)一致性和可讀性,2)避免使用促進性技術(shù),3)潛在的Performent FormanceBenefits,以及4)RightCollaboraboraboraboraboraboraboraboraboraboraboraboraboraboraboraboraborationWithInteams。

See all articles