Answers for "how to create dots in css"

CSS
0

overflow dots css

.overflow-information{ 
    overflow: hidden;
    display: inline-block;
    text-overflow: ellipsis;
    white-space: nowrap;
  	width:150px; //change based on when you want the dots to appear
}
Posted by: Guest on October-19-2020
17

css circle

#circle {
      width: 100px;
      height: 100px;
      background: red;
      border-radius: 50%
    }
Posted by: Guest on June-01-2020

Browse Popular Code Answers by Language