Hello All,
I am struck in a problem with two Div(s), My code looks like
This all looks fine when opened in a normal window size but when we shrink(minimize ) the browser window, text in right Div start coming below Image(Div left). What i want is that both the div's should remain in a same row(user should be able to minimize the window to some extend but after that content doesnt minimize.
I hope i have clearly explained my problem.
Any help will be appreciated.
Regards
Jay
I am struck in a problem with two Div(s), My code looks like
Code:
<div style="width: 100%; font-family: Verdana, Sans-Serif; height: 80px; ">
<div style="float:left; width:500px;">
<asp:Image ID="abc" runat="server" ImageUrl="../Images/abc.gif" />
</div>
<div style="float:right; padding-left: 10px; padding-right: 20px; padding-top: 1px; padding-bottom: 1px; font-family: Verdana, Arial; font-size: 8pt; font-weight: bold;">
<p style="margin-top:13px; margin-bottom:-1px">Text1</p>
<p style="margin-top:-1px; margin-bottom:-1px">Text2</p>
<p style="margin-top:-1px; margin-bottom:-1px">Text3</p>
<p style="margin-top:-1px; margin-bottom:-1px">Text4</p>
</div>
</div>
I hope i have clearly explained my problem.
Any help will be appreciated.
Regards
Jay
Comment