每当我尝试添加空格时,它都会转到下一行
Example My Queue //在本例中,它转到下一行中的队列
下面是componant.ts
self.queueList.push({ 'encryt': CryptoJS.AES.encrypt(item, self.ecrykey.trim()).toString(), 'value': item });在Html页面//
<div class="panel" style="text-align:left; width: 15;">
<div *ngFor="let item of queueList">
<a [routerLink]="['/navbar',{queue: item.encryt }] ">{{item.value | titlecase}}</a>
</div>
</div>//Quelist包含字符串SC已附加,MyQueue(10),Intro(5)

发布于 2021-08-10 14:35:11
尝试:
white-space: nowrap;在你的CSS中
https://stackoverflow.com/questions/68728354
复制相似问题