您好我需要一些帮助来使用div
代替td
创建表格数据。我不是编码专家。
结果应为:(3列3行)
此外,如果我想要更多的行,那将是精确的代码。我如何将所有这些代码(css
和html
)?
答案 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>