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. Link to comment https://forums.phpfreaks.com/topic/286314-background-image-behind-multy-line-text-line-by-line/ 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. Link to comment https://forums.phpfreaks.com/topic/286314-background-image-behind-multy-line-text-line-by-line/#findComment-1469534 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. Link to comment https://forums.phpfreaks.com/topic/286314-background-image-behind-multy-line-text-line-by-line/#findComment-1469535 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 Link to comment https://forums.phpfreaks.com/topic/286314-background-image-behind-multy-line-text-line-by-line/#findComment-1469619 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.