Answers for "how to add dotted underline for the whole line in html"

CSS
-1

dotted underline css

.dotted { 
  border-bottom: 1px dotted; 
}

<p><span class="dotted">some text</span></p>
Posted by: Guest on October-27-2020

Browse Popular Code Answers by Language