Skip to content Skip to sidebar Skip to footer

Dashed Border Not Showing In Firefox

I have a radius div with 5px dashed border, but border not show properly in Firefox. It show well in IE and chrome. Demo div{ height:100px; width: 100px; b

Solution 1:

Your border is working on firefox see DEMO you can check it with removing radius. FireFox having bug when you tried circle with dashed border.

This is a known bug. Your options are:

  • If this is just for the sake of a circle, draw it with <canvas>, e.g. as demonstrated here
  • Use SVG (possibly inline), which supports various ways to stroke paths
  • Just make a Image PNG

Solution 2:

Post a Comment for "Dashed Border Not Showing In Firefox"