Tema: FRAMES y w3
Ver Mensaje Individual
  #3 (permalink)  
Antiguo 31/08/2003, 04:52
EDGARDO MOGUELLA
 
Fecha de Ingreso: noviembre-2001
Ubicación: Groningen
Mensajes: 175
Antigüedad: 22 años, 5 meses
Puntos: 0
Estuve modificando un poco el codigo, lo pego mas abajo.

Asi segun la w3: "This Page Is Valid XHTML 1.0 Frameset!"

pero la joda es que sigue apareciendo una linea finisima entre los frames.

Asi que no me queda otra que definir la propiedad border="0" en el frameset.

edgardo

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>demo</title>
</head>
<frameset rows="5px,*,5px" style="border: none;">
<frame src="dummy.html" name="ftop" id="ftop" scrolling="no" frameborder="0" noresize="noresize" marginwidth="0" marginheight="0"></frame>
<frameset cols="*,796px,*">
<frame src="left.html" name="fleft" marginwidth="0" marginheight="0" noresize="noresize" scrolling="no"></frame>
<frameset rows="95px,*,0px">
<frame src="logo.html" name="flogo" frameborder="0" marginwidth="0" marginheight="0" noresize="noresize" scrolling="no"></frame>
<frame src="calendario/tabla.html" name="finhoud" frameborder="0" marginwidth="0" marginheight="0" noresize="noresize" scrolling="auto"></frame>
<frame src="inhoud.html" name="freload" frameborder="0" marginwidth="0" marginheight="0" noresize="noresize" scrolling="no"></frame>
</frameset>
<frame src="right.html" name="fright" frameborder="0" marginwidth="0" marginheight="0" noresize="noresize" scrolling="no"></frame>
</frameset>
<frame src="dummy.html" name="fbottom" frameborder="0" marginwidth="0" marginheight="0" noresize="noresize" scrolling="no"></frame>
</frameset>
</html>