リストを作る_01

カテゴリー︎: html+css

簡単でシンプルなリストを作る

HTML ↓

1
2
3
4
5
6
<ul class="tableview">
<li class="tableview__item"><a href="" class="btn">リスト1</a></li>
<li class="tableview__item"><a href="" class="btn">リスト2</a></li>
<li class="tableview__item"><a href="" class="btn">リスト3</a></li>
<li class="tableview__item"><a href="" class="btn">リスト4</a></li>
</ul>

CSS ↓

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/* リスト */
.tableview ul{
  margin: 0;
  padding: 0;
}
 
.tableview li a{
  text-decoration: none;
}
 
.tableview {
  margin: 5px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid #999;
}
 
.tableview__item {
  padding: 1em;
  background: #ddd;
}
 
.tableview__item + .tableview__item {
  border-top: 1px solid #eee;
}

サンプルを見る ⇒sample_01.html