Frames using XHTML....

admin

Administrator
Staff member
I have a 3-window frame using XHTML but I can't get seemless integration of all the windows. The frameborder and borders are set to zero but there's still a white line separating each frame. help!!!!!

This is the code I'm using:

<?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>
<frameset rows="*,350">
<frame src=http://www.webdeveloper.com/forum/archive/index.php/"top.html" id="top" frameborder="0" border="0" />
<frameset cols="460,460">
<frame src="left.html" id="left" frameborder="0" border="0" />
<frame src="right.html" id="right" frameborder="0" border="0" />
</frameset>
</frameset>
</head>
<body>
</body>
</html>
 
Back
Top