IE9 table has random rows which are offset at random columns

前端 未结 5 716
栀梦
栀梦 2020-12-04 18:27

I have a page of categories, when the user clicks one, the items under that category are loaded via a jQuery Ajax call, in a table, and stuck into an element just below the

5条回答
  •  我在风中等你
    2020-12-04 19:04

    White spacing was my issue too, though my situation was a little different. This thread helped me fix the issue (Thanks to all).

    My table would be fine then randomly add a column out of nowhere after a postback. Here is my code before and after:

    Before: (i have about 10 others that are formatted the same way are not causing this issue, but this one was)

    
        
            Intangibles
        
        
        
    
    

    After: (removed the line breaks which are usually fine, but for some reason this was causing an issue)

    
        Intangibles
        
    
    

    Hopefully this will help someone as well.

提交回复
热议问题