Answers for "paragraph dotted css"

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
0

how to add dotted line after and before text in css

.horizontal_dotted_line {
  display: flex;
  width: 300px;
  border-right: 1px solid black;
  border-left: 1px solid black;
  padding: 5px;
} 
.horizontal_dotted_line:after {
  border-bottom: 1px dotted black;
  content: '';
  flex: 1;
}
.horizontal_dotted_line:before {
  border-bottom: 1px dotted black;
  content: '';
  flex: 1;
}
Posted by: Guest on January-04-2022

Browse Popular Code Answers by Language