15 lines
182 B
HTML
15 lines
182 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
div {
|
|
width: 5ch;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
div::first-line {
|
|
text-decoration: underline;
|
|
}
|
|
</style>
|
|
<div>
|
|
<br>
|
|
1234567
|
|
</div>
|