vote up 0 vote down star

My CSS doesn't work so well when using it in ASP.Net it appear to use the background image only when there's actual content inside of the form. (It dynamically grows vertically).

Is there a way for me to specify the height of my ASP.Net form?

<form id="form1" runat="server" style="height:inherit">
<asp:ContentPlaceHolder ID="ContentPlaceHolder1" runat="server">
</asp:ContentPlaceHolder>
<div class="Content">        
    <img src="../../Images/Logo.png" alt="Logo MiCompra" />
    <H1>Bienvenidos a MiCompra!</H1>
    	<p>Bienvenidos a MiCompra. Compre lo que quiera, cuando quiera.</p>
    	<p>Bienvenidos a MiCompra. Compre lo que quiera, cuando quiera.</p>	
</div>
</form>

Thank you!

flag

Do you have a pic of what it looks like when it is displayed and what you want it to look like? – gsirianni Sep 2 at 15:26

1 Answer

vote up 2 vote down check

You could set the height of the div.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.