in my recent quest to make all my html W3C 4.01 , i worked hard all day and wrote batch scripts to clean up code and make it all WC3 4.01 Transitional compliant (with the help of TIDY.EXE, [AWESOME PROGRAM!])
anyhow, i can't figure out how to make borderless frames. below is an example of my frames that is WC3 4.01 compliant.
for the life of me, i can't figure out how to remove the nasty sight of the borders.
i've tried the old school way of
adding frameborder="0" border="0" to teh FRAMESET
any thoughts?
anyhow, i can't figure out how to make borderless frames. below is an example of my frames that is WC3 4.01 compliant.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
"http://www.w3.org/TR/html4/frameset.dtd">
<HTML>
<HEAD>
<META content=
"HTML Tidy for Windows (vers 1st February 2003), see www.w3.org"
name="generator">
<TITLE>
Digital and Film Photographs
</TITLE>
<META http-equiv="Content-Type" content=
"text/html; charset=us-ascii">
<STYLE type="text/css">
body {
background-color: #FFFFFF;
color: #000000;
}
</STYLE>
</HEAD>
<FRAMESET rows="80,*">
<FRAME name="topFrame" frameborder="0" scrolling="no" noresize
src="frame_top.htm">
<FRAMESET cols="180,*" rows="*">
<FRAME name="leftFrame" frameborder="0" noresize src=
"frame_left.htm">
<FRAME name="mainFrame" frameborder="0" src=
"frame_right.htm">
</FRAMESET>
<NOFRAMES>
<BODY>
</BODY>
</NOFRAMES>
</FRAMESET>
</HTML>
for the life of me, i can't figure out how to remove the nasty sight of the borders.
i've tried the old school way of
adding frameborder="0" border="0" to teh FRAMESET
that works and removes thes bar but breaks WC3 code.<FRAMESET rows="80,*" frameborder="0" border="0">
any thoughts?
