space 两个文本框之间

space between two text boxes

我有以下用于 radTextBoxes 的代码。我希望每个文本框之间有 space。我试图将 margin-bottom css 放在其中一个文本框上,但这没有用。下面是我的代码:

</telerik:RadPageLayout>
        <div class="componentWraper">
         <telerik:RadPageLayout  ID="OriginDept" runat="server" GridType="Fluid" >
             
        <Rows>
            <telerik:LayoutRow>
                <Columns>
                    <telerik:LayoutColumn Span="4" >
                         <telerik:RadTextBox CssClass="t-row"   runat="server" ID="txtDept" Width="100%" TabIndex="1" Label="Department *" ></telerik:RadTextBox>
                        <span style="margin-top:200px"></span>
                         <telerik:RadTextBox runat="server" ID="TbLastName" Width="100%" TabIndex="2" Label="Section/Divison *"></telerik:RadTextBox>
                         
                    </telerik:LayoutColumn>
             
                </Columns>
            </telerik:LayoutRow>
        </Rows>
    </telerik:RadPageLayout>
            </div>
        </telerik:RadAjaxPanel>

我想要 Department 文本框和 section/.division 文本框之间的 space。我试图在两者之间添加边距,但没有用。

下面是文本框之间没有space的页面截图:

<telerik:RadPageLayout  ID="OriginDept" runat="server" GridType="Fluid" >             
    <Rows>
        <telerik:LayoutRow>
            <Columns>
                <telerik:LayoutColumn Span="4" >
                     <telerik:RadTextBox runat="server" ID="TbLastName" Width="100%" TabIndex="2" Label="Section/Divison *"></telerik:RadTextBox>                         
                </telerik:LayoutColumn>             
            </Columns>
        </telerik:LayoutRow>
        <telerik:LayoutRow style="margin-top: 200px">
            <Columns>
                <telerik:LayoutColumn Span="4" >
                     <telerik:RadTextBox runat="server" ID="RadTextBox2" Width="100%" TabIndex="2" Label="Section/Divison *"></telerik:RadTextBox>                         
                </telerik:LayoutColumn>             
            </Columns>
        </telerik:LayoutRow>
    </Rows>
</telerik:RadPageLayout>

您正试图将您的箱子分成不同的行。将它们放在不同的 Telerik:LayoutRows

然后您可以将 CssClass 放在底部 telerik:LayoutRow 以给顶部留出边距,或者使用我的示例中的内联样式。