我只想问,为什么我的HTML布局和打印布局不一样。
这是我的HTML布局。 enter image description here
这是我的打印布局。 enter image description here
但是当我将比例从100更改为70时,它会调整其原始HTML布局。为什么会发生这种情况?
这是我在打印触发器中的代码..
$(document).ready(function(e) {
$('#print').on('click', function(e) {
$("#printArea").printMe({ "path": ["{{ asset('template/css/bootstrap-grid.min.css') }}","{{ asset('template/css/bootstrap.min.css') }}"] });
});
});
我顺便使用printme jquery插件..
感谢您的所有答案..