I would like to use dynamic text as background of certain elements in my tag. Because of this, I can use images (dynamic text). How do I do it with just CSS or JavaScript?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
You can have an absolutely positioned element inside of your relative positioned element:
And then the CSS:
Here's an example of it. |
|||
|
|
|
It may be possible (but very hackish) with only CSS using the :before or :after pseudo elements:
This seems to work, but you'll probably need to tweak it a little. Also note it won't work in IE6 because it doesn't support |
|||
|
|
|
You could make the element containing the bg text have a lower stacking order ( z-index, position ) and possibly even set opacity. So the element you need on top would need a higher stacking order ( z-index:5; position:relative; for ex ) and the element behind would need something lower ( default or just a lower z-index like 3 and position:relative; ). |
|||
|
|
