When I re-sized my application window , my footer,body and header shrinks but i want to keep width and height same as a original, so when we re-sized window outside scroll appears and which keeps footer,body and header part remains same as original.
How can i do this…? Advance thanks…
#contentFrame {
height: 74%;
padding:0px;
float:left;
position: absolute;
top: 70px;
left: 180px;
overflow: auto;
overflow-y:visible;
-ms-overflow-y: auto;
/* -ms-overflow-y: hidden; */ /*for ie8*/
bottom:50px;
width:auto;
right:10px;
}
You should be able to set
width:###pxandheight:###pxattributes in the CSS for any (block) element on your page.