html {
overflow: hidden;
}
.body{
margin: 10px;
padding: 10px;
background-color: #fff;
box-shadow: 5px 5px #CCCCCC;
width: auto;
height: calc(100vh - 40px);
border: 1px solid #f00;
bottom: 40px;
}
.body{
margin: 10px;
padding: 10px;
background-color: #fff;
box-shadow: 5px 5px #CCCCCC;
width: auto;
height: calc(100vh - 40px);
border: 1px solid #f00;
bottom: 40px;
overflow: hidden;
}
@media only screen and (max-width : 992px)
{
.one {
margin-right: 0;
}
}
<div class="mainwrapper">
<h1>Предварительный просмотр</h1>
<table border="1">
<tr>
<th>Колонка 1</th>
<th>Колонка 2</th>
<th>Колонка 3</th>
</tr>
<tr>
<td>
Наименование
</td>
<td>
Единица измерения
</td>
<td>
Цена
</td>
</tr>
<b></table> - тег не закрытый</b>
</div>
<footer>
$("form").submit(function() {
var th = $(this);
$.ajax({
type: "POST",
url: "mail.php", // ЗДЕСЬ ОБРАБОТЧИК УКАЗЫВАТЬ
data: th.serialize()
}).done(function() {
alert("Заявка отправлена!");
setTimeout(function() {
// Done Functions
th.trigger("reset");
}, 1000);
});
return false;
});