编写选择器

2019-03-02  本文已影响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;
}
上一篇下一篇

猜你喜欢

热点阅读