0

I'm trying to manage my wrapper/canvas on responsive view to fit in the div. The problem is that it overflows the div's frame (look at screenshot)

I tried to play with min-width and max-width but nothing works correctly.

My Fiddle code

.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;
}

enter image description here

4

1 回答 1

1

嗨,如果您删除填充它可以解决问题

.table>tbody>tr>td {
      padding:8px 0px;
  }
于 2018-01-16T16:04:24.557 回答