欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

框覆盖时会覆盖背景但不覆盖文字,如何设置?_html/css_WEB-ITnose

程序员文章站 2022-06-05 21:49:36
...
上面的框可以覆盖下面框的背景,但不会覆盖下面的文字,应如何设置?

回复讨论(解决方案)

发下代码看看,不然不好说

设置z-index的值,http://www.w3school.com.cn/css/pr_pos_z-index.asp


hello
hello
test


hello2
test2


上面的test能够透过背景色看到。

position:relative;
定位可以吧,在两个style都加上这个

hello
hello
test
hello2
test2

position改成absolute以后就可以用z-index设置它了,z-index越大 ,离用户越近