我正在尝试在响应式视图上管理我的包装器/画布以适应div。问题是它溢出了div的框架(看截图)
我尝试使用最小宽度和最大宽度但没有任何效果正常。
.wrapper {
margin-left: auto;
margin-right: auto;
margin-bottom: 8px;
position: relative;
width: 262px;
height: 150px;
-moz-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
}
.signature_client,
.signature_tech {
position: absolute;
left: 0;
top: 0;
width: 280px;
height: 150px;
}
答案 0 :(得分:1)
嗨,如果你删除填充它解决了问题
.table>tbody>tr>td {
padding:8px 0px;
}