I'm working in a new proyect, but I have a problem with my CSS-.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Graphics</title>
</script>
<style type="text/css">
* {
margin : 0;
padding : 0;
font-family : Verdana;
color : #555;
}
#content {
height : 1000px;
width : 100%;
background : #09F;
}
#subBar {
height : auto;
width : 100%;
position : fixed;
bottom : 0;
}
#subBar-content {
height : 30px;
width : 100%;
background : #CCC;
}
#status-column {
position : absolute;
z-index : 5;
width : 200px;
height : 500px;
background : red;
top : -470px;
right : 0;
}
</style>
</head>
<body>
<div class="header">
</div>
<div id="content"></div>
<div id="subBar">
<div id="subBar-content">
<div id="status-column"></div>
</div>
</div>
</body>
</html>
Note that the subBar always stay in the bottom and is fixed; subBar and subBar-contet have the same height, but #status-column is bigger.
There is another way to find the same result without using top and right properties?
Thanks.