DEV Community

Jennifer Fadriquela
Jennifer Fadriquela

Posted on • Updated on

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

Top comments (0)