如何用表格显示块固定50%的宽度?

时间:2019-04-23 00:25:27

标签: css

我希望我的画廊看起来像这样:https://i.imgur.com/8TlIEuD.png(这是我在CSS中编码的方式),但是当您在手机中浏览网页时,它看起来像这样:https://i.imgur.com/qij9xH9.png

我尝试了所有方法,但只是在智能手机上看起来有所不同。

这是我当前的代码

@media (max-width: 767px)
td.thumbnails:nth-child(2n+1) {
    clear: both;
}
@media (max-width: 767px)
td.thumbnails:not(.filmstrip_background) {
    display: block;
    width: 50%;
    float: left;
    white-space: normal;
    table-layout: fixed;
}

arianagrandechile.net/galeria是运行主题的网页

0 个答案:

没有答案