DEV Community

🚩 Atul Prajapati 🇮🇳
🚩 Atul Prajapati 🇮🇳

Posted on

Subscription box with html and css

Hi coding people hope you are doing well 🤗 by the way in this (Dev post)[dev.to] we are going to learn how to make this beautiful newsletter subscription box in a minute. Yes in a minute 😆

The all beautiful magic you can see here is because of this few lines of code 👇👇👇👇✍

{
  width: 0;
  transition: 0.6s;
}

.email-box:hover > .tbox,.tbox:focus
{
  width: 260px;
  padding: 0 10px;
}
Enter fullscreen mode Exit fullscreen mode

Top comments (0)