Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
div嗨,我需要一些帮助来使用而不是创建表格数据td。我不是编码专家。
div
td
结果应为:(3 列和 3 行)
此外,如果我想要更多行,那么确切的代码是什么。我怎样才能把所有这些代码(css和html)?
css
html
希望对你有帮助
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>