it-bergmann
Grünschnabel
Hi,
ich habe eine Seite mit mehreren divs und die Formatierung ist auch ok:
div#maincontent{
position: fixed;
top: 130px; /*Set top value to HeightOfFrameDiv*/
left: 0;
right: 0;
bottom: 0;
overflow: auto;
background: #fff;
}
<div id="maincontent">
<div class="innertube">
<h1>Dynamic Drive CSS Library</h1>
<p><script type="text/javascript">filltext(255)</script></p>
<p style="text-align: center">Credits: <a href="http://www.dynamicdrive.com/style/">Dynamic Drive CSS Library</a></p>
</div>
</div>
Allerdings benötige ich innerhalb des divs ASP Controls, welche wiederum ein form tag erforderlich machen:
<form runat="server">
<div id="maincontent">
<div class="innertube">
<aspropDownList id="ddlLocations" runat="server" style="left: 60px; position: absolute; top: 15px" AutoPostBack="True" OnSelectedIndexChanged="ddlLocations_SelectedIndexChanged" />
</div>
</div>
</form>
Und nun funktioniert mein CSS nicht mehr.
Frage:
Wie kann ich divs anwenden, wenn diese innerhalb einer Form sind?
Hat vielleicht jemand eine Lösung?
Danke,
Andre
ich habe eine Seite mit mehreren divs und die Formatierung ist auch ok:
div#maincontent{
position: fixed;
top: 130px; /*Set top value to HeightOfFrameDiv*/
left: 0;
right: 0;
bottom: 0;
overflow: auto;
background: #fff;
}
<div id="maincontent">
<div class="innertube">
<h1>Dynamic Drive CSS Library</h1>
<p><script type="text/javascript">filltext(255)</script></p>
<p style="text-align: center">Credits: <a href="http://www.dynamicdrive.com/style/">Dynamic Drive CSS Library</a></p>
</div>
</div>
Allerdings benötige ich innerhalb des divs ASP Controls, welche wiederum ein form tag erforderlich machen:
<form runat="server">
<div id="maincontent">
<div class="innertube">
<aspropDownList id="ddlLocations" runat="server" style="left: 60px; position: absolute; top: 15px" AutoPostBack="True" OnSelectedIndexChanged="ddlLocations_SelectedIndexChanged" />
</div>
</div>
</form>
Und nun funktioniert mein CSS nicht mehr.
Frage:
Wie kann ich divs anwenden, wenn diese innerhalb einer Form sind?
Hat vielleicht jemand eine Lösung?
Danke,
Andre