21 lines
341 B
CSS
21 lines
341 B
CSS
#infocontent {
|
|
width: 100%;
|
|
height: 100%;
|
|
position: fixed;
|
|
left: 0px;
|
|
top: 0px;
|
|
z-index: -1; /* Ensure div tag stays behind content; -999 might work, too. */
|
|
}
|
|
|
|
.stretch {
|
|
width:100%;
|
|
height:100%;
|
|
}
|
|
|
|
.fit {
|
|
width: auto;
|
|
min-height: 100%;
|
|
display: block;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
} |