Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-ui/text-overflow-ellipsis-multiline-001.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>Test multiline ellipsis with `::first-line`</title>
<link rel="match" href="reference/text-overflow-ellipsis-multiline-001-ref.html">
<style>
div {
width: 6ch;
overflow: hidden;
text-overflow: ellipsis;
}
div::first-line {
color: orange;
}
</style>
<div>
1234567<br>
1234567
</div>