OZONE Asylum
Forums
Stupid Basic HTML
frame has no border...
This page's ID:
9607
Search
QuickChanges
Forums
FAQ
Archives
Register
Edit Post
Who can edit a post?
The poster and administrators may edit a post. The poster can only edit it for a short while after the initial post.
Your User Name:
Your Password:
Login Options:
Remember Me On This Computer
Your Text:
Insert Slimies »
Insert UBB Code »
Close
Last Tag
|
All Tags
UBB Help
Well, I don't particularly like frames, myself, but the code will work...except I'd like to give helpful advice, to at least appear more compliant to standards. What you've got... [code]<FRAMESET ROWS="60,*" BORDER=0 SPACING=0 FRAMEBORDER=0 FRAMESPACING=0 > ... <FRAME SRC="doc2.html" NAME="left" BORDER=0 SPACING=0 FRAMEBORDER=0 FRAMESPACING=0 MARGINWIDTH=0 MARGINHEIGHT=0 > ... </FRAMESET>[/code] should be... [code]<frameset rows="60,*"> ... <frame src="doc2.html" name="left" frameborder="0" marginwidth="0" marginheight="0" /> ... </frameset>[/code] Notice few things: [ulist] * All tags should be lowercase, to comply with XHTML standards (this is regarding XML and the case-sensitive nature of XML) * All attributes should be in double- or single-quotation marks (I prefer double, myself) * All attribute titles inside tags should be lowercase--see mention #1. * Notice the change in attributes on the <frameset> tag. According to standards, the only definitions you may put in there are "rows", and "cols" * Notice the changes in the attributes on the <frame> tag. According to standards, the only definitions you may put in there are "frameborder", "longdesc", "marginheight", "marginwidth", "name", "noresize", "scrolling", and "src" [/ulist] But this is all contingent on the fact that you've got the proper DTD at the top of the code, which is... [code]<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">[/code] if you're wanting to comply to XHTML1 standards of framesets, or... [code]<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">[/code] if you're wanting to comply with HTML4 standards of framesets. Hope that helps you. [img]http://www.miscminutiae.com/sig/twitch_01.gif[/img] [url=http://www.miscminutiae.com] [img]http://www.miscminutiae.com/sig/twitch_02.gif[/img] [/url][url=http://www.miscminutiae.com/sig] [img]http://www.miscminutiae.com/sig/twitch_03.gif[/img] [/url]
Loading...
Options:
Enable Slimies
Enable Linkwords
« Backwards
—
Onwards »