gpt4 book ai didi

css - 手机、平板电脑中的应用程序样式问题

转载 作者:行者123 更新时间:2023-11-28 00:41:57 28 4
gpt4 key购买 nike

我正在使用 Angular 4 并构建一个应用程序。它工作正常,但当我在移动设备上运行时出现问题。整个风格发生了变化并分发了整个应用程序。我担心我必须做什么。任何帮助将不胜感激This is the mobile form

overlapping is shown in  a black box

This is the orignal Desktop application

最佳答案

在表格前取 Div 并应用 div 样式 width: 100%; overflow: auto;

.demo {
width: 100%;
overflow: auto;
}
.demo::-webkit-scrollbar {
width: 5px;
height: 10px;
border-radius: 10px;
background-color: #d9d9d9;
}
.demo::-webkit-scrollbar-thumb {
border-radius: 10px;
background-color: #5f6566;
}
.demo::-webkit-scrollbar-track {
border-radius: 10px;
background-color: #d9d9d9;
}
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js"></script>


<div class="demo">
<table class="table">
<thead>
<tr>
<th>Firstname</th>
<th>Lastname</th>
<th>Email</th>
<th>Lastname</th>
<th>Lastname</th>
<th>Lastname</th>
</tr>
</thead>
<tbody>
<tr>
<td>John</td>
<td>John</td>
<td>Doe</td>
<td>Doe</td>
<td>john@example.com</td>
<td>john@example.com</td>
</tr>
<tr>
<td>John</td>
<td>John</td>
<td>Doe</td>
<td>Doe</td>
<td>john@example.com</td>
<td>john@example.com</td>
</tr>
<tr>
<td>John</td>
<td>John</td>
<td>Doe</td>
<td>Doe</td>
<td>john@example.com</td>
<td>john@example.com</td>
</tr>
<tr>
<td>John</td>
<td>John</td>
<td>Doe</td>
<td>Doe</td>
<td>john@example.com</td>
<td>john@example.com</td>
</tr>
<tr>
<td>John</td>
<td>John</td>
<td>Doe</td>
<td>Doe</td>
<td>john@example.com</td>
<td>john@example.com</td>
</tr>
</tbody>
</table>
</div>

关于css - 手机、平板电脑中的应用程序样式问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53774574/

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