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á hasta el ancho del elemento superior. Y el ancho debe ser flexible.
¿Alguien puede sugerir alguna buena solución para esto?
Gracias por adelantado.