Hello there,
I'm running into an issue with cards that I have to wrap in anchor tags to make the whole card clickable.
I'd initially place the anchor tags outside the <div class="accomodation-card">, and it worked fine until I had to give a width to my card using flex-basis. That width would not apply. All cards are placed within a flex-container.
<a href="">
<div class="accomodation-card">
<img src="images/hebergements/4_small/marcus-loke-WQJvWU_HZFo-unsplash.jpg" class="accomodation-img" alt="auberge La Canebière à Marseille">
<div class="accomodation-text">
<p><strong>Auberge La Canebière</strong></p>
<p>Nuit à partir de 25€</p>
<i class="fa-solid fa-star blue-star"></i>
</div>
</div>
</a>
I then placed the anchor tags withing the card div, as shown below. it works, but is it the most conventional solution?
<div class="accomodation-card">
<a href="">
<img src="images/hebergements/4_small/marcus-loke-WQJvWU_HZFo-unsplash.jpg" class="accomodation-img" alt="auberge La Canebière à Marseille">
<div class="accomodation-text">
<p><strong>Auberge La Canebière</strong></p>
<p>Nuit à partir de 25€</p>
<i class="fa-solid fa-star blue-star"></i>
</div>
</a>
</div>
A scrim:
https://scrimba.com/scrim/cLwJBrCd