1div {
2 white-space: nowrap;
3 overflow: hidden;
4 text-overflow: ellipsis;
5}
1h1 {
2 text-decoration: overline;
3}
4
5h2 {
6 text-decoration: line-through;
7}
8
9h3 {
10 text-decoration: underline;
11}
12
13h4 {
14 text-decoration: underline overline;
15}
1.overflow-information{
2 overflow: hidden;
3 display: inline-block;
4 text-overflow: ellipsis;
5 white-space: nowrap;
6 width:150px; //change based on when you want the dots to appear
7}
1.text-ellipsis{
2 display: block;
3 width: 100%;
4 white-space: nowrap;
5 overflow: hidden;
6 text-overflow: ellipsis;
7}
1{
2 width: 250px;
3 white-space: nowrap;
4 overflow: hidden;
5 text-overflow: ellipsis;
6}