I am facing a problem when I reduce my browser window size
,HTML element
going to be disappear.But what I want is to make element visible and display vertically.I have searched lot but not getting the right answer that solves my problem.Here is my code.
<div style="border: 1px solid lightgrey; border-radius: 10px 10px 10px 10px; width: 800px">
<table width= "75%" style="margin-left:1%">
<tr>
<td width="30%">
@Html.Captcha("Refresh", "Enter Captcha", 5, "Is required field.", true)<div style="color: Red;">@TempData["ErrorMessage"]</div>
</td>
<td width="70%" >
<div id="qrcode" style="display: none">
<img src="@Url.Action("QrCode", "Qr", new { url = Model.ShortUrl })" onclick="AppendURL('@this.Model.ShortUrl')"/>
</div>
</td>
</tr>
</table>
</div>
When I reduce size,QR code Image
start disappearing as size decreasing.Thanks in Advance.