blob: 85f8c50a8d639b760bd981ebea6bf3481983e072 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<!doctype html>
<title>CSS test reference</title>
<style>
p {
width: 40ch;
font: 16px/1 monospace;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
</style>
<p>short<p>
|