在最根层html{width:100%;} 页面中其他元素才能用百分比
<style type="text/css">
html, body {
width:100%;
height: 100%;
margin:0;
padding:0;
background: #000000;
}
#one {
height:100%;
/*width: 100%;*/
/*border: 1px solid green;*/
position:fixed;
}
#oneRight {
height:100%;
/*width: 100%;*/
/*border: 1px solid green;*/
/*position:static;*/
float: right;
}
</style>