i am making a game score card, and i want to align 3 divs in same line but the score always stays in the center of the page regardless how long the name of the teams are.
i tried many things but nothing got me results i wanted, if you can help please do, thanks in advance.
team alpha (logo) 0-0 (logo) team beta
very long team name (logo) 0-0 (logo) another team
{% for match in matches %}
<div class="match">
<div class="home">
{{match.home_name}} <img src="{{match.home_logo}}">
</div>
<div class="score">
{{match.home_score}} : {{match.away_score}}
</div>
<div class="away">
<img src="{{match.away_logo}}">
{{match.away_name}}
</div>
</div>
{% endfor %}