Mac OS Sierra 10.12.6에서 Chrome 버전 61.0.3163.100 (공식 빌드) (64 비트) 또는 Safari 버전 11.0 (12604.1.38.1.7)을 사용하고 있습니다.핸즈프리의 아래쪽 여백 제거
https://jsbin.com/bobevafana/edit?html,output 난 항상 테이블 아래에 아래쪽 여백이 있음을 깨닫게
는, 사람이 그것을 제거하는 방법을 알고 않습니다
나는 높이가 수도가 화면의 높이를 초과하는 handsontable를 만들려면 ? 나는 당신의 그 데모 인에서 본 무엇
var app = angular.module('app', ['ngHandsontable']);
app.controller('Ctrl', ['$scope', '$filter', '$timeout', 'hotRegisterer', function($scope, $filter, $timeout, hotRegisterer) {
$scope.dataJson = [
[5], [7], [5], [7], [5], [7], [5], [7], [5],
[7], [5], [7], [5], [7], [5], [7], [5], [7],
[5], [7], [5], [7], [5], [7], [5], [7], [5],
[7], [5], [7], [5], [7], [5], [7], [5], [7],
[5], [7], [5], [7], [5], [7], [5], [7], [5],
[7], [5], [7], [5], [7], [5], [7]
];
$scope.settings = {
contextMenu: true,
onAfterCreateRow: function(index, amount) {
console.log("onAfterCreateRow");
$timeout(function() {
$scope.$digest();
});
}
};
}]);
<!DOCTYPE html>
<html>
<head>
<script src="https://handsontable.github.io/ngHandsontable/node_modules/angular/angular.js"></script>
<script src="https://docs.handsontable.com/pro/1.8.2/bower_components/handsontable-pro/dist/handsontable.full.js"></script>
<link type="text/css" rel="stylesheet" href="https://docs.handsontable.com/pro/1.8.2/bower_components/handsontable-pro/dist/handsontable.full.min.css">
<script src="https://handsontable.github.io/ngHandsontable/dist/ngHandsontable.js"></script>
</head>
<body ng-app="app">
<div ng-controller="Ctrl">
<hot-table settings="settings" datarows="dataJson"></hot-table>
</div>
</body>
</html>
나는 바이올린에서 'margin-bottom'을 찾을 수 없습니다. – weBBer
저는 Mac에서 Chrome으로 볼 수있는 스크린 샷을 넣었습니다. – SoftTimur
'margin' 프라퍼티는'table'에 선언되어 있습니다 만,'body' 태그에 선언 된 디폴트 * user-agent *'margin'가 있습니다. 이는 재설정해야하는 전형적인 * 공급 업체 * (브라우저) 스타일입니다. ** 참고 : ** https://jsbin.com/vofuveraho/1/edit?html,output – UncaughtTypeError