gpt4 book ai didi

css - 如何减小html中表格的大小?

转载 作者:行者123 更新时间:2023-11-28 02:35:40 26 4
gpt4 key购买 nike

我有一个虚拟产品,它显示音乐样本文件供用户收听,然后从中选择。 “https://myproductvideo.com/product/video-with-voice”这是产品的链接。这是一个 wordpress 网站,我需要使用 html,因为产品描述只需要 html。在移动 View 中,我在两行的表格中显示了音乐样本。但是每行的移动宽度足够大。我想减小行宽以适应移动屏幕。我已经尝试了一切,但一无所获。请看代码

    <style>
.clsDes { visibility:visible; } .clsmob { visibility:collapse; } @media screen and (max-width: 768px) { .clsDes { visibility:collapse; } .clsmob { visibility:visible; } }

    <div class="clsmob">
<table style="width:10px;">
<tbody>
<tr>
<th>Female Voice Samples</th>
</tr>
<tr>
<td>[playlist artists="false" images="false"
ids="810,811,812,813,814,815,816,817,818,819"]</td>
</tr>
<tr>
<th>Male Voice Samples</th>
</tr>
<tr>
<td>[playlist artists="false" images="false"
ids="821,822,823,824,825,191,192,193,194,195"]</td>
</tr>
</tbody>
</table>
</div>

<div class="clsDes" >
<table >
<col width="50">
<col width="50">
<tr>
<th>Female Voice Samples</th>
<th>Male Voice Samples</th>
</tr>
<tr>
<td >[playlist artists="false" images="false"
ids="810,811,812,813,814,815,816,817,818,819"]</td>
<td >[playlist artists="false" images="false"
ids="821,822,823,824,825,191,192,193,194,195"]</td>
</tr>
</table>
</div>

最佳答案

我找到了这个 -

为 clsDes 设置在移动 View 中不显示

@media screen and (max-width: 768px) { .clsDes { visibility:collapse; } 
.clsmob { visibility:visible; } }

@media screen and (max-width: 768px) { .clsDes { display:none; } .clsmob { 
visibility:visible; } }

此代码非常适合您共享的代码。但您的问题有所不同。我去查看了您的网站,您需要为玩家设置自定义 CSS。语音播放器的宽度是动态生成的。使用 !important 修复 css 中的宽度。

例如:

@media screen and (max-width: 768px) { .wp-playlist wp-audio-playlist wp-
playlist-light{max-width:250px !important}}

试试这个

关于css - 如何减小html中表格的大小?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47431944/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com