Skip to content

css选择器

选择器

通过选择器找到元素,并给元素添加样式

基本选择器

  1. 标签选择

    html
    <h1 >1级标题</h1>
    css
    h1{
    	color: cornflowerblue;
    }
  2. 类选择器

    html
    <h1 class="colorblue">1级标题</h1>
    <h2 class="colorblue">2级标题</h2>
    css
    .colorblue{
    	color: cornflowerblue;
    }
  3. id选择器

    html
    <h3 id="idh3">3级标题</h3>
    css
    #idh3{
    	color: green;
    }

Released under the MIT License.