Untitled

 avatar
unknown
plain_text
3 years ago
362 B
7
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...