我有一个Angular应用程序,并且我在<div>
中显示不同的字符串,但是我希望它们能与div的宽度对齐。
我已经看到this link展示了执行这种操作的不同方法,但我无法使其正常工作...
忘记添加代码。来了。
component.ts
export class FitTextComponent implements OnInit {
line1 = 'this is text for line 1';
line2 = 'less text';
line3 = 'medium amount of text';
line4 = 'this will be a really long line';
text = [this.line1, this.line2, this.line3, this.line4];
constructor() { }
ngOnInit() {
}
}
component.html
<div class="container">
<p *ngFor="let line of text">{{line}}</p>
</div>
component.css
.container {
width: 300px;
background: grey;
}
答案 0 :(得分:2)
我本来会留此作为评论,但我显然需要50点声誉...
我建议您查看Font scaling based on width of container。
他们引用了您提到的链接,但也解决了其他解决方案,例如:https://drafts.csswg.org/css-values/#viewport-relative-lengths
他们还讨论了根据尺寸是基于主体还是容器来调整尺寸的具体解决方案。
我来看一下。希望有帮助!