1

600px のときにテーブルが画面に正しく表示されない理由を突き止めようとしています。私はそれをcodepenで試してみましたが、小さな画面で適切にレンダリングするのを妨げる何かがあるに違いありません。

(デモ)

@media screen and (max-width:600px){
    .sample{
        background:blue;
    }

    table {
      border: 0;

    }

    table thead {
      display: none;
    }

    table tr {
      margin-bottom: 10px;
      display: block;
      border-bottom: 2px solid #ddd;
        width:100%;
    }

    table td {
      display: block;
      text-align: right;
      font-size: 13px;
      border-bottom: 1px dotted #ccc;
        width:100%;
    }

    table td:last-child {
      border-bottom: 0;
    }

    table td:before {
      content: attr(data-label);
      float: left;
      text-transform: uppercase;
      font-weight: bold;
    }
}

これは、600px の Web ブラウザーで取得したものです。

ここに画像の説明を入力

4

0 に答える 0