<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style>
.ellipsis {
font-size:24pt;
overflow:hidden; /* Indicamos que el texto que sobre salga se esconda */
white-space:nowrap; /* Indicamos que el texto no haga salto de linea */
text-overflow: ellipsis; /* Si el texto es mas largo que el continente añadimos los puntos ... */
}
</style>
</head>
<body>
<p class='ellipsis'>In publishing and graphic design, lorem ipsum is a placeholder text commonly used to demonstrate the visual form of a document without relying on meaningful content. Replacing the actual content with placeholder text allows designers to design the form of the content before the content itself has been produced.</p>
</body>
</html>
Comentarios sobre la versión: Versión 1.0 (1)