Last active
March 1, 2016 16:05
-
-
Save AlexanderArmua/4f3bc84ce657f4ee59a8 to your computer and use it in GitHub Desktop.
Funciones
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Con este CSS pone puntos suspensivos cuando un texto es demasiado grande para su contenedor, el css se le aplica al contendor, | |
para que limite al texto. | |
*/ | |
<style type="text/css"> | |
.contenido { | |
/* | |
width:500px; | |
background-color:orange; | |
color:white; | |
font-size:18pt;*/ | |
overflow:hidden; /* Escondemos la parte sobrante */ | |
white-space:nowrap; /* Indicamos que no realice salto de linea si no cabe en la anchura indicada */ | |
text-overflow: ellipsis; /* Ponemos los dos puntos */ | |
} | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment