需要帮助使用Div而不是td创建表格?

时间:2013-11-10 10:48:30

标签: html css

您好我需要一些帮助来使用div代替td创建表格数据。我不是编码专家。

结果应为:(3列3行)

此外,如果我想要更多的行,那将是精确的代码。我如何将所有这些代码(csshtml)?

放在一起?

1 个答案:

答案 0 :(得分:0)

希望它可以帮到你,

CSS:

   <style>
      .Rows {
            float:left;
            width:450px; 
        }

   </style>    

HTML部分:

    <div>          
        <div class="Rows" >1st content here</div>
        <div class="Rows" >2nd content here</div>
        <div class="Rows">3rd content here</div>
    </div>