タグ

テーブルとfontに関するgouei2001のブックマーク (1)

  • 【コピペOK】CSSだけで実装できるおしゃれテーブルデザイン10つ

    よくサービスのプランの比較に使用される料金テーブルです。人気のプランを目立たせるために中央のデータだけ大きさを変えて飛び出させています。真ん中の飛び出しているセルはposition:absoluteで実現しています。tableの幅は絶対値で固定しているのでレスポンシブ対応させる場合は横スクロールさせる必要があります。 <table> <tr> <th>無料プラン</th> <th class="popular"><span class="inner"><span class="no1">人気No.1</span>初級プラン</span></th> <th>上級プラン</th> </tr> <tr> <td>¥0</td> <td class="popular">¥5,000</td> <td>¥8,000</td> </tr> <tr> <td><a href="#">申し込み</a></

    gouei2001
    gouei2001 2022/02/23
    “table{ width: 100%; border-collapse:separate; border-spacing: 0; } table th:first-child{ border-radius: 5px 0 0 0; } table th:last-child{ border-radius: 0 5px 0 0; border-right: 1px solid #3c6690; } table th{ text-align: center; color:white; background: linear-gradient(#829ebc,#225588); border-le
  • 1