aliento Posted February 19, 2014 Share Posted February 19, 2014 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. Quote Link to comment Share on other sites More sharing options...
RaoufOsman Posted February 19, 2014 Share Posted February 19, 2014 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. Quote Link to comment Share on other sites More sharing options...
RaoufOsman Posted February 19, 2014 Share Posted February 19, 2014 Set the css for your text to display inline-block or any other way you want to display the text. I hope this helps. Quote Link to comment Share on other sites More sharing options...
josh1600 Posted February 20, 2014 Share Posted February 20, 2014 try setting the background within the body tag Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.