瀏覽器

volc1606發表於2024-11-15

控制檯

檢視繼承的樣式

Inherited(繼承) from xxx: 繼承樣式來自於xxx

<!DOCTYPE html>
<html lang="zh-CN">

<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <style>
        .font {
            font-size: 12px;
        }

        .font2 {
            font-size: 3px;
        }

        body{
            font-size: 20px;
        }

        .d {
            color: red;
        }
    </style>
</head>

<body>
    <div class="font">學習css</div>
    <div class="font2">學習css</div>
    <div class="d">繼承了body字型</div>
</body>

</html>

第三個div的字型繼承了body屬性。

img

相關文章