DEV Community

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)