JSFiddle - React, Tailwind, and code Playground

by dying_sakura

HTML

<div class="game_grid">
<a href="game_page.php?id=1">
    <img src="images/games_images/<?php echo $game_image; ?>" width="120" height="120" />

</a>
</div>

CSS

.game_grid {
    text-align: center;
}
.game_grid a {
    text-decoration:none;
}
.game_grid a:hover {
    text-decoration:underline;
}
.game_grid span {
    display:block;
    font-weight: bold;
}