Home / Components / Alert Components / Tailwind CSS Card With Image and Text Horizontal

Tailwind CSS Card With Image and Text Horizontal

Tailwind CSS card with image and text horizontal. Suitable to show simple listing such as blog post with a cover image.

<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-6 w-full">
  <div class="flex flex-col xl:flex-row shadow hover:shadow-md w-full bg-white rounded-lg overflow-hidden cursor-pointer">
	<img
		 class="object-cover w-full h-48"
		 src="https://images.unsplash.com/photo-1516205651411-aef33a44f7c2?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=420&q=80"
		 alt="Flower and sky"
		 />

	<div class="relative p-4">
	  <h3 class="text-base md:text-xl font-medium text-gray-800">
		This is card title
	  </h3>

	  <p class="mt-4 text-base md:text-lg text-gray-600">
		Lorem ipsum dolor sit amet, consectetur adipisicing elit ad assumenda.
	  </p>
	</div>
  </div>

  <div class="flex flex-col xl:flex-row shadow hover:shadow-md w-full bg-white rounded-lg overflow-hidden cursor-pointer">
	<img
		 class="object-cover w-full h-48"
		 src="https://images.unsplash.com/photo-1516205651411-aef33a44f7c2?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=420&q=80"
		 alt="Flower and sky"
		 />

	<div class="relative p-4">
	  <h3 class="text-base md:text-xl font-medium text-gray-800">
		This is card title
	  </h3>

	  <p class="mt-4 text-base md:text-lg text-gray-600">
		Lorem ipsum dolor sit amet, consectetur adipisicing elit ad assumenda.
	  </p>
	</div>
  </div>

  <div class="flex flex-col xl:flex-row shadow hover:shadow-md w-full bg-white rounded-lg overflow-hidden cursor-pointer">
	<img
		 class="object-cover w-full h-48"
		 src="https://images.unsplash.com/photo-1516205651411-aef33a44f7c2?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=420&q=80"
		 alt="Flower and sky"
		 />

	<div class="relative p-4">
	  <h3 class="text-base md:text-xl font-medium text-gray-800">
		This is card title
	  </h3>

	  <p class="mt-4 text-base md:text-lg text-gray-600">
		Lorem ipsum dolor sit amet, consectetur adipisicing elit ad assumenda.
	  </p>
	</div>
  </div>
</div>
                    

3 years ago

3.3K

How to install and add to your project?

Step 1: Include Scripts and Styling CDN inside the head tag

<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/charts.css/dist/charts.min.css">
<script defer src="https://unpkg.com/[email protected]/dist/cdn.min.js"></script>

Step 2: Copy the Tailwind CSS Card With Image and Text Horizontal component code above as you need it

Step 3: Preview the component in your browser 🚀

Step 4: For production release make sure to use the official Tailwind CSS Installation

You are done 🎉

Credits or Attribution

If you enjoy using our components, please do give us (PostSrc) credit in your project footer section or about page. Copy the HTML below for attribution.

<a href="https://postsrc.com/components" target="_blank" rel="noopener" title="PostSrc Components - Collection of Tailwind CSS components for everyone to use"><img style="width: auto; height: 46px;" src="https://postsrc.com/img/attr.png" alt="PostSrc logo"></a>

Welcome to PostSrc V3

PostSrc Dark Logo

You have to login to favorite this