LoginSignup
3
3

More than 5 years have passed since last update.

tableのボーダーがie9以上だけ効かないよ

Posted at

thとtdにborder引いたけどie9だと出ませんでした。

前提:
ie9+しか確認していません

解決方法

tableに以下を追加
border-collapse: separate;
border-spacing: 0;

table {
    border-collapse: separate;
    border-spacing: 0;
    th {
        border-left: 1px solid $border-form;
        border-right: 1px solid $border-form;
        border-bottom: 1px solid $border-form;
    }
    td {
        border-right: 1px solid $border-form;
        border-bottom: 1px solid $border-form;    
    }
}

注意

border-collapseはcollapseがデフォルトな罠

3
3
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
3
3