Long html table looses its background image
        Posted  
        
            by 
                Alegro
            
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Alegro
        
        
        
        Published on 2012-12-15T10:41:56Z
        Indexed on 
            2012/12/15
            11:04 UTC
        
        
        Read the original article
        Hit count: 286
        
I have about 7500 (short) text lines in a table cell.
The table looses its background image on about 1800th line.
Is there a limit about the table's length?
Text in the cell stays visible till end, but without background.
Table is named #story.
#story{
    margin-top:15px;
    border:medium ridge #FFF;
    border-radius:9px;
    background-image:url(img/back01.jpg);
    }
Also tried:
    background: url("img/back01.jpg") repeat; // without result
    background-color:#FFF; // this works along the whole table.
}
© Stack Overflow or respective owner