我的引导程序表有问题,在电话分辨率上,我的电话分辨率表将显示如下:



这是我的代码:

<table class="table table-hover table-dark mt-3 table-bordered">
                            <thead>
                                <tr>
                                    <th scope="col" >#</th>
                                    <th scope="col" >Value</th>
                                    <th scope="col" >Action</th>
                                </tr>
                            </thead>
                            <tbody>
                                <tr>
                                    <th scope="row">Username</th>
                                    <td><?=$Username?></td>
                                    <td></td>
                                </tr>
                                <tr>
                                    <th scope="row">Email</th>
                                    <td><?=$Email?></td>
                                    <td></td>
                                </tr>
                               </tbody>
                             </table>


如果您查看照片的文字,您会在屏幕上看到文字“消失”,我该如何解决?

最佳答案

将表响应类添加到表中。您还可以使特定于查看断点。

更多详细信息here

关于html - 从电话分辨率表中引导4文本“出去”,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/51397617/

10-11 12:31