×
×
Correct!
Specify that the overflowed content for the <p> element should be signaled with an ellipsis (...).
<style>
p {
white-space: nowrap;
width: 200px;
border: 1px solid #000000;
overflow: hidden;
text-overflow: ellipsis;
}
</style>
<body>
<p>
This paragraph contains a very long word: supercalifragilisticexpialidocious.
</p>
</body>
Not CorrectClick here to try again. Correct!<style> p { white-space: nowrap; width: 200px; border: 1px solid #000000; overflow: hidden;: ; } </style> <body> <p> This paragraph contains a very long word: supercalifragilisticexpialidocious. </p> </body> |