Textüberlauf Ellipsis CSS
div {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
Determined Dotterel
div {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
div.a {
white-space: nowrap;
width: 100px;
overflow: hidden;
text-overflow: ellipsis;
border: 1px solid #000000;
}
/*or==============*/
p {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
/*/this will show text like this
This is some long text........*/
white-space:normal !important;
word-wrap:break-word;