skip to Main Content

Html – I need to reduce the vertical spacing between the <asp:ListItem>

I need to reduce the vertical spacing between the <asp:ListItem>. I tried giving style="margin-bottom=5px and margin-top: 5px;" but it is not working. how to do it? <asp:RadioButtonList ID="rblGlobalConfidential" runat="server" RepeatDirection="Vertical" AutoPostBack="false" onChange="ConfidentialTypeChange();" Font-Bold="true" Font-Size="Medium"> <asp:ListItem>None</asp:ListItem> <asp:ListItem>Coding Restriction Based</asp:ListItem> <asp:ListItem>Transaction Type…

VIEW QUESTION

Change markup content with variable in Blazor – Asp.net

I want to change the child content of a button after click, but I got some error when I try. This code work but, obviusly, don't render the icon passed: <TelerikButton OnClick="@RevealPassword" Class="pass-btn" Primary="true" ButtonType="ButtonType.Button" Id="btnShowPwd" Title="Show"> @EyeIcon </TelerikButton> @code…

VIEW QUESTION
Back To Top
Search