Can you do this HTML layout without using tables?

前端 未结 10 1148
心在旅途
心在旅途 2020-12-04 06:23

Ok, I had a simple layout problem a week or two ago. Namely sections of a page needed a header:

+------------------         


        
10条回答
  •  猫巷女王i
    2020-12-04 06:58

    I agree that one should really only use tables for tabular data, for the simple reason that tables don't show until they're finished loading (no matter how fast that is; it's slower that the CSS method). I do, however, feel that this is the simplest and most elegant solution:

    
        
            stack header
            
        
    
        
            
    Title
    Button

    The button function and any extra detail can be styled from this basic form. Apologies for the bad tags.

提交回复
热议问题