I have created a master page in asp.net which uses the following css to create my border. I have a logon screen which is centred in the middle of the browser window depending upon its size using the css (accountinfo). See browser screenprint below.
As you can see the border doesnt stretch to the bottom of the browser, is there a way of achieving this? I have tried height:100% in my body and .page however it makes no difference.
body{
background-color: #EFEFEF;
margin-left: auto;
margin-right: auto;
padding: 0;
position: relative;
}
.page{
margin:10px;
background-color: #fff;
border:2px solid #fff;
border-radius:25px;
-moz-border-radius:25px;
height:1000px;
}
.accountInfo{
position: fixed;
top: 50%;
left: 50%;
margin-top: -50px;
margin-left: -100px;
width:200px;
height:100px;
font-size:80%;
}

Why not
You could also add height:100% to
<html>and<body>elementsedit
also to the
<form>element