DEV Community

Jennifer Fadriquela
Jennifer Fadriquela

Posted on • Edited on

1

Internet Explorer Coding Issues

There's a special place in my heart for Internet Explorer memes but it's always a pain to deal with its quirks. Below are some of its issues:

I'll add something to this list every now and then because IE is awesome.

<!-- Won't work -->
<div class="d-flex">
   <button>Button 1</button>
   <button>Button 2</button>
</div>

<!-- Will work -->
<div class="d-flex">
   <div>
      <button>Button 1</button>
   </div>
   <div>
      <button>Button 2</button>
   </div>
</div>
Enter fullscreen mode Exit fullscreen mode
  • d-flex - d5e90f5e3995cf99442cb8b638fd910557c2526c

Speedy emails, satisfied customers

Postmark Image

Are delayed transactional emails costing you user satisfaction? Postmark delivers your emails almost instantly, keeping your customers happy and connected.

Sign up

Top comments (0)

AWS Security LIVE!

Join us for AWS Security LIVE!

Discover the future of cloud security. Tune in live for trends, tips, and solutions from AWS and AWS Partners.

Learn More

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay