Style Captcha image and textbox in one line

Jeevan

New member
I want to display captcha image and textbox in one line in razor page.It has <br> tags. is it possible to remove <br> tags using css or how can I resolve this ? (Package CaptchaMvc version 1.5)

login.cshtml -->

C#:
@using CaptchaMvc.Interface
@{
    ICaptcha captcha = Html.Captcha("Refresh", "Enter Verification Code ", 4, "The Captcha is required", true);
}

C#:
<div style="display:inline-block;">
    @captcha.RenderMarkup()
</div>
 

123amanullah

New member
#:
@using CaptchaMvc.Interface
@{
ICaptcha captcha = Html.Captcha("Refresh", "Enter Verification Code ", 4, "The Captcha is required", true);
}
C#:
<div style="display:inline-block;">
@captcha.RenderMarkup()
</div>