сделайте нижний колонтитул выровненным по центру и нижней части страницы в asp.net
Я столкнулся с одной проблемой
мой нижний колонтитул на странице остается опущенным, но не в центре. теперь он выровнен по правому краю
Я хочу, чтобы он был выровнен по центру.
раньше он даже не останавливался, а потом применил CSS .footerContent, который упоминается ниже.
после применения .footerContent. это решило мою проблему с тем, что нижний колонтитул не был нижней частью страницы. теперь он внизу, но показывает широко справа . половина нижнего колонтитула обрезается.
можете ли вы, ребята, исправить и показать мне, что не так?
вот экран ошибки
видеть здесь[]
вот разметка
<body> <form id="form1" runat="server"> <div id="wrapper"> <div id="header" runat="server"> <%-- Menu goes here --%> </div> <div id="masterpageContent" class="footer"> <asp:ContentPlaceHolder ID="MainContent" runat="server" /> </div> </div> <div class="footerContent"> <div class="footerbrd"> </div> <p class="clear"> </p> <div class="footer"> <div class="c1 fleft"> Best viewed in IE8 and above with Resolution 1024x768 </div> <div class="c2 fleft"> (c) Copyright 2013 <br /> All Rights Reserved. </div> <div class="c3 fright"> Site by abc Team </div> <p class="clear"> </p> </div> </div> </form> </body>
ересь css
.footerbrd {width:929px; height:1px; background:#ef0b14; margin:0px auto;} .footer {width:929px; margin:0px auto; padding:5px 0px; color:#666666;} .footer .c1 {width:300px; margin:0px; padding:0px;} .footer .c2 {width:375px; margin:0px; padding:0px; text-align:center;} .footer .c3 {width:254px; margin:0px; padding:0px 0px 0px 0px; text-align:right;} ul.foot {list-style:none; padding: 0px 0px; margin: 0px;} ul.foot li {list-style:none; float:left; line-height:12px;} ul.foot li a {color:#666666; padding: 2px 10px; font-size:11px; text-decoration:none; display:block; float:left;} .footerContent { position: absolute; height: 50px; width: 929px; margin: auto; bottom: 0px; }