枠線をつけよう
index.html
stylesheet.css
結果
演習メモ
index.html
・以下のh3要素に「section-title」というclassをつけてください
→ <h3 class=”section-title”>学べるレッスン</h3>
stylesheet.css
・contentsのheightを500pxにしてください
.contents {
height: 500px;
}
・section-titleのborder-bottomを指定してください
.section-title {
border-bottom: 2px solid #dee7ec;
}
・contents-itemのfloatプロパティをleftにしてください
.contents-item {
float: left;
}
コメント