7
Cómo establecer la propiedad de altura para SPAN
Necesito hacer que el siguiente código sea estirable con una altura predefinida <style> .title{ background: url(bg.gif) no-repeat bottom right; height: 25px; } </style> <span class="title">This is title</span> Pero dado que span es un elemento en línea, la propiedad "height" no funcionará. Intenté usar div en su lugar, pero se expandirá …