Exactamente lo que dijeron, que va a funcionar.
En el elemento padre afirmados un max-height.
Estoy tomando sandeep ejemplo y agregando la altura máxima y, si es necesario, puede agregar la propiedad de ancho máximo. El texto se quedará donde debe permanecer (Si es posible, en algunos casos, tendrá que cambiar algunos valores para que se quede allí)
span{
background: none repeat scroll 0 0 #F8F8F8;
border: 5px solid #DFDFDF;
color: #717171;
font-size: 13px;
height: 30px;
letter-spacing: 1px;
line-height: 30px;
margin: 0 auto;
position: relative;
text-align: center;
text-transform: uppercase;
top: -80px;
left:-30px;
display:none;
padding:0 20px;
}
span:after{
content:'';
position:absolute;
bottom:-10px;
width:10px;
height:10px;
border-bottom:5px solid #dfdfdf;
border-right:5px solid #dfdfdf;
background:#f8f8f8;
left:50%;
margin-left:-5px;
-moz-transform:rotate(45deg);
-webkit-transform:rotate(45deg);
transform:rotate(45deg);
}
p{
margin:100px;
float:left;
position:relative;
cursor:pointer;
max-height: 10px;
}
p:hover span{
display:block;
}
max-height en el p párrafo , en segundo lugar a la última, última línea.
Pruébelo antes de calificarlo inútil.
Quizás esté interesado en recibir esta respuesta - http://stackoverflow.com/questions/1055581/how-do-i-add-a-tool-tip-to-a-span-element/25836471#25836471 –