美文网首页
编写选择器

编写选择器

作者: 大风吹兮风清扬 | 来源:发表于2019-03-02 21:30 被阅读0次

    编写选择器
    现在,你应该已经熟悉 CSS 语句的基本结构。每个 CSS 语句都由一个选择器(selector)和一个声明块(declaration block)组成。选择器告诉浏览器,我们要为哪些 HTML 元素设计样式,声明块则告诉浏览器需要将哪些样式应用于该 HTML。

    image
    <div id="menu">
      <h1 class="item">Chicken Clay Pot</h1>
      <img src="img/clay-pot.jpg" alt="clay pot" class="picture">
      <p class="description">Crispy rice baked in clay pot topped with chicken and vegetables</p>
    </div>
    
    #menu  {
      text-align: center;
    }
    .item {
      color: red;
    }
    .picture {
      border-radius: 5px;
    }
    .description {
      font-style: italic;
    }
    

    相关文章

      网友评论

          本文标题:编写选择器

          本文链接:https://www.haomeiwen.com/subject/fhiyuqtx.html