How can I bring an image in front of text HTML?

送分小仙女□ 提交于 2019-12-04 14:53:22
Jake Zeitz

Add z-index: 100; after position: fixed; in your css rule for your header element.

'z-index' must be used in combination with 'position'. 'position' alone will work, it will set the position of the corresponding div or whatever element. By default everything are in the same layer (the same z-index), to put some element in top (or beneath) another, define another number, minus, 0 (zero), or positive integer.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!