Answers for "how to add dotted line after and before text in css"

CSS
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

Code answers related to "how to add dotted line after and before text in css"

Browse Popular Code Answers by Language