0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

CSSでTable Cellに余白を作る方法

Posted at

はじめに

bootstrapで実装していたTable Cellに余白を作る際に少しハマったのでメモです。

HTMLとCSS

bootstrap Examplesより

HTML

<table class="table table-borderless">
  <thead>
    <tr>
      <th scope="col">#</th>
      <th scope="col">First</th>
      <th scope="col">Last</th>
      <th scope="col">Handle</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <th scope="row">1</th>
      <td>Mark</td>
      <td>Otto</td>
      <td>@mdo</td>
    </tr>
    <tr>
      <th scope="row">2</th>
      <td>Jacob</td>
      <td>Thornton</td>
      <td>@fat</td>
    </tr>
    <tr>
      <th scope="row">3</th>
      <td colspan="2">Larry the Bird</td>
      <td>@twitter</td>
    </tr>
  </tbody>
</table>

CSS

th,
td {
	border-right: 1px solid #104A9E !important;
    color: #104A9E;
}
スクリーンショット 2019-09-14 16.39.31.png # 変更点(CSS) CSSで背景色と同じborderを追加して余白があるように見えるように変更。
th,
td {
	border-right: 1px solid #104A9E !important;
    color: #104A9E;
}
/* 追加 */
tr {
    border-bottom: 10px solid #e9f1f9;
}
スクリーンショット 2019-09-14 16.41.44.png
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?