Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Jamiewarb/3693be75223e1d757e89162298745e37 to your computer and use it in GitHub Desktop.
Save Jamiewarb/3693be75223e1d757e89162298745e37 to your computer and use it in GitHub Desktop.
Figure with variable aspect ratio
<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