07-19-2013, 03:32 PM
Container Dışındaki Divleri 100% Boyutuna Getirmek için css Kodunu Paylaşacağım bunu cssye Eklediğinizde Container Dışındakiler Sayfa Boyutuna Yapışacaklardır..
Umarım Yardımcı Olmuşumdur...
Kod:
html {
height:100%; max-height:100%;
}
body {
width:100%;
margin:0;
padding:0;
height:100%;
max-height: 100%;
}
#wrap {
min-height:100%;
height: 100%;
position:relative;
}
* html #wrap {
height:100%
}
#inner-wrap {
padding-bottom:50px;
min-height: 100%;
}
#inner-wrap:after {
content:" ";
display:block;
clear:both;
}
* html #inner-wrap {
height:100%;
}
#header {
width: 100%;
background-color: #;
height: 16px;
color: White;
text-align: center;
position: relative;
top:0px;
}
#footer {
width: 100%;
background-color: #ccccccc;
height: 50px;
position:absolute;
bottom: 0;
color: White;
text-align: center;
}
#content {
width: 1000px;
height: 100%;
background-color: #ccccccc;
margin: 0 auto 0 auto;
}
Umarım Yardımcı Olmuşumdur...

