html - 从侧面切割的打印预览

标签 html css

你好我有这个CSS代码

@media print{
  body{
     width:100% !important;
  }
  table{max-width: 100% !important}
}

现在如果打印比例为 100% 预览看起来像这样 enter image description here 但如果我将比例更改为 120 或 130 %,页面预览将如下所示 enter image description here 如您所见,表格向右移动并且没有响应 谢谢

最佳答案

我假设给定的样式是唯一应用的样式。

@media print{
  body{
     width:100vw !important;
  }
  table{max-width: 100vw !important}
}

希望对您有所帮助。干杯!

关于html - 从侧面切割的打印预览,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56527229/

相关文章:

html - Bootstrap - 面板周围的白色边框

javascript - 使用 JavaScript 访问 CSS 样式太慢

html - 网站在 Firefox 中速度快,在 Internet Explorer 中一般,在 Google Chrome 中速度慢

html - 如何用 CSS 完成这个简单的布局?

CSS 页脚宽度

html - 在同一行从左到右堆叠图像和文本

javascript - 通过 php/javascript 更改 href 的类

html - 复制表格单元格属性

css - 垂直居中 <div> 元素

css - 如何使缩略图在 Bootstrap 轮播下可滚动?