特定元素选择器(E)

特定元素选择器,只能匹配到指定HTML元素E

示例:

html {
    height: 100%;
}

body {
    height: 100%;
    background-color: white;
    color: black;
}

a {
    text-decoration: none;
    color: #437abe;
}

上面这些HTML元素htmlbodya都会被匹配到, 无论它们使用了多少次(如果允许多次出现的话)、无论它们的结构多么复杂。