Проблемы с выравниванием input в диве по центру с резиновым макетом сайта в IE, при изменении размера окна браузера input-ты в IE 6-7 начинают съезжать в право , как можно от этого избавиться Код | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>Dynamic Drive: CSS Liquid Layout #3.2- (Fluid-Fluid-Fixed)</title> <style type="text/css">
body{ margin:0; padding:0; line-height: 1.5em; }
b{font-size: 110%;} em{color: red;}
#topsection{ background: #EAEAEA; height: 90px; /*Height of top section*/ }
#topsection h1{ margin: 0; padding-top: 15px; }
#contentwrapper{ float: left; width: 100%; }
#contentcolumn{ margin: 0 200px 0 25%; /*Margins for content column. Should be "0 right-column-width 0 left-column-width*/ }
#leftcolumn{ float: left; width: 25%; /*Width of left column in percentage*/ margin-left: -100%; background: #C8FC98; }
#rightcolumn{ float: left; width: 200px; /*Width of right column in pixels*/ margin-left: -200px; /*Set margin to -(RightColumnWidth)*/ background: #FDE95E; }
#footer{ clear: left; width: 100%; background: black; color: #FFF; text-align: center; padding: 4px 0; }
#footer a{ color: #FFFF80; }
.innertube{ margin: 10px; /*Margins for inner DIV inside each column (to provide padding)*/ margin-top: 0; }
/* ************************************************** */ #authoriz{ margin-top:3em; padding-bottom:0.2em; /* padding-top:0.5em; */ height:125px; background: url('http://fxonline.com.ua/win_authoriz.jpg') no-repeat center; width:100%; }
#authoriz input{ font-family: Arial, sans-serif; font-size: 10pt; margin: 1em 0em 0em 1em; color: #666;
}
#authoriz .entry{padding-right:0.5em;}
#authoriz span{ display:block; padding-left:1em; color:#FFFFFF;
}
</style>
<script type="text/javascript"> /*** Temporary text filler function. Remove when deploying template. ***/ var gibberish=["This is just some filler text", "Welcome to Dynamic Drive CSS Library", "Demo content nothing to read here"] function filltext(words){ for (var i=0; i<words; i++) document.write(gibberish[Math.floor(Math.random()*3)]+" ") } </script>
</head> <body> <div id="maincontainer">
<div id="topsection"><div class="innertube"><h1>CSS Liquid Layout #3.2- (Fluid-Fluid-Fixed)</h1></div></div>
<div id="contentwrapper"> <div id="contentcolumn"> <div class="innertube"><b>Content Column: <em>Fluid</em></b> <script type="text/javascript">filltext(45)</script>
<center> <div id='authoriz'> <input id="login"> <br> <input id="passw"> <br> <input type="button" class='entry ' value="Вход"> <br> <span id='mess'>Неверный логин или пароль.</span> </div> </center>
</div> </div> </div>
<div id="leftcolumn"> <div class="innertube"><b>Left Column: <em>25%</em></b> <script type="text/javascript">filltext(20)</script></div>
</div>
<div id="rightcolumn"> <div class="innertube"><b>Right Column: <em>200px</em></b> <script type="text/javascript">filltext(15)</script></div> </div>
<div id="footer"><a href="http://www.dynamicdrive.com/style/">Dynamic Drive CSS Library</a></div>
</div> </body> </html>
|
|