A4大小的html内容溢出

时间:2018-07-31 09:58:05

标签: javascript html css css3

我正试图阻止文本溢出,并在页面结束后从下一页重新开始A4纸张。所附屏幕截图中的内容:

enter image description here

这是我的HTML:

<div class="container">
  <div class="a4size">
    <p>Text
    </p>
  </div>
</div>

CSS:

.container {
  width: 100%;
  margin: 0 auto;
  display: block;
  margin-top: 30px;
  margin-bottom: 60px;
  border-radius: 2px;
  box-shadow: 0 0 10px 4px #555;
  padding: 45px;
  background-color: #fff;
}
.a4size{
  width: 210mm;
  height: 297mm;
}

这是我的 JSFiddle DEMO

我已经经历了这里提到的一些解决方案,但无济于事。

1 个答案:

答案 0 :(得分:0)

将样式overflow:hidden添加到A4尺寸div

.a4size{
  width: 210mm;
  height: 297mm;
  overflow:hidden;
}