我可以拥有Delphi和HTML格式的多栏广播组吗?

我可以拥有Delphi和HTML格式的多栏广播组吗?,html,css,delphi,Html,Css,Delphi,我可以在Delphi和HTML中使用多列单选组吗?在HTML中,您只需将喜欢的单选按钮放在表格中即可定义自己的布局,例如: <table> <tr> <td> <input type="radio" name="group1" value="Milk">Milk<br /> <input type="radio" name="group1" value="Bu

我可以在Delphi和HTML中使用多列单选组吗?

在HTML中,您只需将喜欢的单选按钮放在表格中即可定义自己的布局,例如:

<table>
    <tr>
        <td>
            <input type="radio" name="group1" value="Milk">Milk<br />
            <input type="radio" name="group1" value="Butter">Butter<br />
            <input type="radio" name="group1" value="Cheese">Cheese
        </td>

        <td>
            <input type="radio" name="group1" value="Water">Water<br />
            <input type="radio" name="group1" value="Bread">Bread<br />
            <input type="radio" name="group1" value="Soda">Soda
        </td>
    </tr>
</table>

牛奶
黄油
奶酪 水
面包
苏打水
至于德尔福,我不知道,因为我不熟悉德尔福


如果它类似于Windows窗体,我认为您只需使用可视化设计器将单个单选按钮放置在您希望它们具有的任何位置。

在Delphi中,RadioGroup具有可设置的Columns属性

下面的代码将设置3列

RadioGroup1.Columns := 3;

可能是浮动
div
标记,这是我的工作范围之外的东西。我仍然用桌子来做这类事情。