19
18

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.

HTMLのテーブルにCSSで斜線を引く方法

Last updated at Posted at 2013-12-06

はじめに

  • HTMLのtableでthやtdに斜線を引く方法をご紹介
  • tableのwidth, heightを設定しても若干表示はOS/ブラウザで表示が変わってくるのでその対応方法にも触れておく

書き方

HTMLの記述

  • ここからjsファイルを落としてくる
<script src="css_browser_selector.js" type="text/javascript"></script>

CSSの記述

/*  斜線を引きたいタグにクラスslashをつけているとき(数値は適当) */

/* Windowsだけにあてたい場合 */
.win .slash {
    background: linear-gradient(12deg, white, white 48%, gray 49%, gray 51%, white 52%, white);
}
/* Macだけにあてたい場合 */
.mac .slash {
    background: linear-gradient(10deg, white, white 48%, gray 49%, gray 51%, white 52%, white);
}
/* Windows Chromeだけにあてたい場合 */
@media screen and (-webkit-min-device-pixel-ratio:0) {
  .win .slash {
      background: linear-gradient(8deg, white, white 48%, gray 49%, gray 51%, white 52%, white);
  }
}

~ただの宣伝~

  • 全国のSeleniumer必読
  • Seleniumerといっていますが、Selenium, SauceLabs, Travis, Jenkinsに関するノウハウ書いているのでよかったら参考にしてみてください
19
18
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
19
18

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?