« 縦向き横向きCSS | メイン | スマホページ作成アレコレ »
2013年08月01日
cssテーブルっぽく
うほうほ テーブルじゃなくともテーブルっぽくレイアウトできるのね。
ul {
display: table;
width: 100%;
table-layout: fixed;
}
li {
display: table-cell;
}
a {
display: block;
color: #000;
text-align: center;
text-decoration: none;
}
li:nth-child(1) a { border-bottom: 4px solid #00c; }
li:nth-child(2) a { border-bottom: 4px solid #c00; }
li:nth-child(3) a { border-bottom: 4px solid #fc0; }
投稿者 muuming : 2013年08月01日 17:43