Jump to content

background image behind multy line text, line by line


aliento

Recommended Posts

Hello,

I want to put behind text a background image. I did it but when the text is long and change line the background disappear.

Here are the css i use inside a span :

position:relative;
    background-image: url('http://domain/images/bar.png');
    height:35px;
line-height:35px;
background-repeat: repeat-y;
background-repeat: repeat-x;
display: inline-block;

I want the background to be in all lines of the text.

Sorry I am on my cell phone. But from what I am understanding, I think you are trying to have a background image behind some text. Try this:

 

Have a div container with the background and

your code inside the container can be the text.

 

<div id="container">

<! - - your code - - >

</div>

 

CSS

 

#container{background:url(your url) //add all your other background css

 

Then you want to set your text to display inline-block.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.