CSS Animation: Card Width expand on hover

css-animation:-card-width-expand-on-hover

In this tutorial, you will learn how to create a pure CSS card width expand animation with hover effect.

Card Width expand on hover

If you want to create this type of animation, simply use the following CSS code snippet.

CSS Code

.container {
  display: flex;
}
.card {
  height: 200px;
  background: rgb(48, 207, 232);
  flex: 1;
  transition: 0.3s;
}
.card:hover {
  flex: 3;
  background: rgb(12, 171, 195);
}

Card Width expand on hover

Source Code

Thanks for Reading ❤️! Check my website Demo coding for updates about my latest CSS Animation, CSS Tools, and some cool web dev tips. Let’s be friends!

Don’t forget to subscribe to our channel : Demo code

Total
0
Shares
Leave a Reply

Your email address will not be published. Required fields are marked *

Previous Post
nco-to-pm:-how-the-military-prepares-you-as-a-project-manager

NCO to PM: How the Military Prepares You as a Project Manager

Next Post
business-process-automation-is-construction-managements-opportunity-to-improve-roi

Business Process Automation is Construction Managements Opportunity to Improve ROI

Related Posts