当我试图内联标签和mother和father元素的链接时,我的页面前端出现了问题。
我尝试使用以下代码:
<div class="row">
<!-- Start mother and father row -->
<div class="mb-2 col-lg-6">
<div class="row">
<div class="text-md-end text-muted col-md-2 col-lg-4">
Mother
</div>
<div>
<a *ngIf="horse.mother"
[routerLink]="['/horses', horse.mother.id, 'detail']"
>
{{horse.mother.name}}
</a>
</div>
</div>
</div>
<div class="mb-2 col-lg-6">
<div class="row">
<div class="text-md-end text-muted col-md-2 col-lg-4">
Father
</div>
<div>
<a *ngIf="horse.father"
[routerLink]="['/horses', horse.father.id, 'detail']"
>
{{horse.father.name}}
</a>
</div>
</div>
</div>
<!-- End mother and father row -->
</div>
My frontend looks like this
我如何内联标签和链接?
1条答案
按热度按时间rxztt3cl1#
div是一个块级元素。块级元素自动显示在一个新行上。因为文本“母亲”在它自己的div中,而变量在另一个div中,所以你得到了换行符。
要修复,请将标签和变量放在同一个div中:
父亲的部分也一样。