Created
May 6, 2021 19:18
-
-
Save jamesfacts/daebc1a97100d5588b917da5f80bc94a to your computer and use it in GitHub Desktop.
Figure with variable aspect ratio
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<figure> | |
<a href="{{ $url }}"> | |
<div class="aspect-ratio-wrap relative" style="padding-bottom: {{ $aspect_ratio ?? '0%' }};"> | |
<img src="{{ $img_url }}" @if($alt) alt="{!! $alt !!}" @endif | |
class="block absolute top-0 left-0 object-cover w-full h-full"> | |
</div> | |
</a> | |
</figure> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment