Does Firefox support position: relative on table elements?

后端 未结 9 1212
Happy的楠姐
Happy的楠姐 2020-11-22 12:49

When I try to use position: relative / position: absolute on a or in Firefox it doesn\'t seem to wo

9条回答
  •  Happy的楠姐
    2020-11-22 13:36

    Adding display:block to the parent element got this working in firefox. I also had to add top:0px; left:0px; to the parent element for Chrome to work. IE7, IE8, & IE9 are working as well.

    
                
            // A table of information here. 
            // Next line is the child element I want to overlay on top of this table
        
    //child element info

提交回复
热议问题