我有一个 Angular4 应用程序,在我的页面的一部分我有一个<md-card-content>
标签,我试图在<p>
标签中显示一些内容并且<p>
有 20 厘米max-height
!
它适用于短内容,但对于较长的内容则不起作用!<md-card-content>
如果内容的高度超过 20 厘米,我该如何创建另一个?我想做一些像 Microsoft Word 这样的东西,当当前页面已满时移动到新页面!
这是我的一些html代码:
<md-card-content>
<div fxLayout="row" fxLayoutAlign="center center" class="mt-1">
<div class="template">
<p class="head">Mail Number: {{mail_number}}</p> <br>
<p class="head">Date: {{created_at| date:'yyyy MMM dd'}}</p>
<p class="inner" id="mail">{{content}}</p>
<p class="sign" *ngIf="!pageFull">Sincerely</p><br>
<p class="sign" *ngIf="!pageFull">{{sender}}</p>
</div>
</div>
</md-card-content>
这是我的CSS:
.template{
width: 600px;
height: 1100px;
border-width: 2px;
border-style: solid;
border-color: #e6e6e6;
padding-top: 23mm;
padding-left: 2cm;
padding-right: 2.5cm;
//background-color: #f2f2f2;
}
p.head{
line-height: 0.5px;
padding-left: 120mm;
font-size: 3;
}
p{
line-height: 25px;
word-spacing:1px;
}
.inner{
text-align: justify;
padding-top: 21mm;
padding-bottom: 10mm;
white-space: pre-wrap;
max-height: 20cm;
width: 166mm;
word-wrap: break-word;
}
p.sign{
padding-left: 10mm;
line-height: 0.5px;
}