Untitled
Anonymous
plain_text
09/13/2022 5:43 PM
484 B
21
Indexable
Fill in the blank with the correct property to make the overflowed content for the <p> element signaled with an ellipsis (...)
<style>
p {
white-space: no wrap;
width: 300px;
overflow: hidden;
_________________
}
</style>
<body>
<p>
This is a paragraph which contains a very long word: supercalifragilisticexpialidocious.
</p>
</body>Editor is loading...