Google Chrome bug with tr background

后端 未结 11 2004
天命终不由人
天命终不由人 2020-12-16 11:32

I\'m trying to set a background-image to a table row, but background is applied to all its td children.

In IE7 there is the same bug but it is solve with

<         


        
11条回答
  •  有刺的猬
    2020-12-16 12:13

    This works for me in all browsers:

    tr {
    background: transparent url(/shadow-down.gif) no-repeat 0% 100%;
    display: block;
    position: relative;
    width: 828px;
    }
    
    tr td{
    background: transparent;
    }
    

提交回复
热议问题