0

There is an extra dot (thicker) at the end of a word and sometimes at the beginning. Also, is it possible to make the dots round?

enter image description here '

CODE

<span style="border-bottom: 3px dotted #111;">Personal Project
Magazine Ads
Personal Project
Magazine Ads
Packaging 
Logo Design
Corporate Identity</span>
user176105
  • 211
  • 1
  • 4
  • 23
  • 2
    This link could be helpful to you https://medium.com/@luclemo/creating-true-dotted-borders-with-css-233f296d8145#.ang9htore – Geeky Nov 24 '16 at 04:10

1 Answers1

1

The spacing of the dots are not defined by the specification and are implementation-specific. The radius of the dots is half the calculated border-bottom-width.

So if you want the exact shape displaying in border, you can try the property border-image of css3. You can reference here on mdn.

catssay
  • 106
  • 5