Hola
Supongo que lo que quieres es que ocupe el 100% del ancho.
Si es eso, con un código similar a este podrás hacerlo:
Código:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
<html>
<head>
<style type="text/css">
#superio {
width: 100%
}
</style>
<title>Documento sin título</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<frameset rows="100,*"" frameborder="NO" border="0" framespacing="0">
<frame src="mi_pagina_01.htm" id="superior">
<frame src="mi_pagina_02.htm" id="inferior">
</frameset>
</html>
Suerte
Felicidad