CSS Positioning Absolute within table cells not working in Firefox

后端 未结 7 1289
礼貌的吻别
礼貌的吻别 2021-01-17 15:48

I cannot figure out this positioning problem in Firefox. It doesn\'t seem to follow the absolute positioning rule. Is there something I\'m doing that shouldn\'t be done, but

7条回答
  •  误落风尘
    2021-01-17 16:12

    Try this:

    
        
            
    Three
    Two
    Three
    Two

    and for css:

    #two {
        position: absolute;
        top: 0px;
    }
    
    #wrapper {
        position: relative;
    }
    

提交回复
热议问题