Skip to content Skip to sidebar Skip to footer

Z-index Without Style Sheet

Can you set the Z-Index for an image in HTML without writing or embedding a style sheet? I am uploading some content to a web forum and I need to be able to put some text on top of

Solution 1:

You mean using inline style? So something like

<img src="http://path/to/img/" style="position: absolute; z-index: 3" />

Post a Comment for "Z-index Without Style Sheet"