2020年8月29日土曜日

StackEditから持ってきたテーブルタグのレイスト修正。CSS3を使ってこのBlogのテーブルを美しく装飾する。


修正方法

テーマをHTML編集して、タグの直前に下記のコードを挿入します。


<!-- start テーブルタグの装飾を実装 -->    
<style>
table {
  width: auto;
  border-spacing: 0;
  font-size:14px;
  box-shadow: 2px 2px 1px rgba(0,0,0,0.1);
}
table th {
  color: #000;
  padding: 8px 15px;
  background: #eee;
  background:-moz-linear-gradient(#eee, #ddd 50%);
  background:-webkit-gradient(linear, 100% 0%, 100% 50%, from(#eee), to(#ddd));
  font-weight: bold;
  border-top:1px solid #aaa;
  border-bottom:1px solid #aaa;
  line-height: 120%;
  text-align: center;
  text-shadow:0 -1px 0 rgba(255,255,255,0.9);
  box-shadow: 0px 1px 1px rgba(255,255,255,0.3) inset;
}
table th:first-child {
  border-left:1px solid #aaa;
  border-radius: 5px 0 0 0;	
}
table th:last-child {
  border-radius:0 5px 0 0;
  border-right:1px solid #aaa;
}
table tr td {
  padding: 8px 15px;
  text-align: center;
}
table tr td:first-child {
  border-left: 1px solid #aaa;
}
table tr td:last-child {
  border-right: 1px solid #aaa;
}
table tr {
  background: #fff;
}
table tr:nth-child(2n+1) {
  background: #f5f5f5;
}
table tr:last-child td {
  border-bottom:1px solid #aaa;
  
}
table tr:last-child td:first-child {
  border-radius: 0 0 0 5px;
}
table tr:last-child td:last-child {
  border-radius: 0 0 5px 0;
}
table tr:hover {
  background: #eee;
  cursor:pointer;
}
</style>
<!-- end テーブルタグの装飾を実装 -->   

対応した結果

MarkDownで作成したテーブルが下記のレイアウトで表示される様になりました。

参考

ここのスタイルを修正して作成しています。
http://weboook.blog22.fc2.com/blog-entry-329.html

0 件のコメント:

コメントを投稿