Сообщение от Vaska
|
Нужно перед тегом <table поставить <div class="table-responsive"> и после тега </table> поставить </div>
|
Дык!
<!DOCTYPE html>
<html>
<head>
<meta http-equiv='Content-Type' content='text/html; charset=windows-1251' />
<script src='https://code.jquery.com/jquery-latest.js'></script>
<!--
<script src="https://code.angularjs.org/1.3.9/angular.min.js"></script>
<script src="https://code.angularjs.org/1.3.9/angular-route.js"></script>
-->
<style type='text/css'>
.table-responsive {
border: 1px solid;
}
</style>
<script type='text/javascript'>
$(function(){
$('table').wrap('<div class="table-responsive"></div>');
});
</script>
</head>
<body>
<table>
<td>Test</td>
</table>
</body>
</html>