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