Я использую Angular 7
Я использовал класс миниатюр изображений начальной загрузки, он выравнивается по вертикали, я хочу выровнять по горизонтали.
.thumbnail
{
text-align: center;
float: left;
}
.row
{
text-align: center;
}
Ниже приведен мой код:
<div class= "row">
<div class = "col-xs-12">
<button class="btn btn-success">New Recipe</button>
</div>
<hr>
<div class = "col-md-12" >
<a href="#" class="thumbnail" *ngFor="let recipe of recipes">
<img src = "{{ recipe.imagePath }}" alt="{{ recipe.name }}" class =
"img-responsive" class="img-thumbnail">
<h4 class = "caption">{{ recipe.name }}</h4>
<p class = "caption">{{ recipe.description }}</p>
</a>
<app-recepie-item></app-recepie-item>
</div>
</div>
Have created 2 objects
recipes: Recipe [] = [ new Recipe('My Sample Recipe', 'This is my first
recipe', 'image url'),
new Recipe('Potato Recipe', 'This an actual Potato
Recipe', 'http://coastguard.dodlive.mil/files/2014/04/unnamed-2-
560x281.jpg')];
Вывод выглядит следующим образом.
Миниатюры отображаются вертикально.
Я хочу отображать горизонтально.