|
|
|||||||||
|
|||||||||
|
|||||||||
| |
|||
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
HTML: Frames & Frame borders
Can you specifically specify which borders are on or off??
I want to be able the have three rows Code:
<frameset rows="21,*,21" cols="*" frameborder="NO" border="0" framespacing="0">
<frame name="header" src="about:blank" scrolling="NO" noresize>
<frame name="main" src="about:blank">
<frame name="footer" src="about:blank" scrolling="NO" noresize>
</frameset>
and just have boders on the top and left - first frame left - second frame left and bottom - third frame Can I do this? |
|
#2
|
|||
|
|||
|
Re: HTML: Frames & Frame borders
Quote:
the framset affects everything in it, you would have to use multiple framesets, then again, frames are really bad web design, if you want your project to look professional |
|
#3
|
|||
|
|||
|
I know frames are bad, but that is what the company I'm doing stuff for wants. If it were up to me I would be using <div>, <span> and <table>, but hey people who know what they are doing know this. (I'm trying to hint that these guys don't know what they are doing).
Anyway, I tried to the following, none worked. Code:
//Solution One
frame.html
<frameset rows="106,*" frameborder=NO border=0 framespacing=0>
<frame name="header" src="about:blank" scrolling="no" noresize>
<frameset cols="160,*" framespacing=0 border=0 frameborder=NO>
<frame name="menu" src="about:blank" scrolling="auto" bordercolor="#666666" frameborder="YES">
<frame name="main" src="moreframe.html" scrolling="auto" bordercolor="#666666" frameborder="YES">
</frameset>
</frameset>
moreframe.html
<frameset rows="21,*,21" cols="*" frameborder="NO" border="0" framespacing="0">
<frame name="header" src="about :blank" scrolling="NO" noresize>
<frame name="main" src="about :blank">
<frame name="footer" src="about :blank" scrolling="NO" noresize>
</frameset>
//Solution two
frame.html
<frameset rows="106,*" frameborder=NO border=0 framespacing=0>
<frame name="header" src="about:blank" scrolling="no" noresize>
<frameset cols="160,*" framespacing=0 border=0 frameborder=NO>
<frame name="menu" src="about:blank" scrolling="auto" bordercolor="#666666" frameborder="YES">
<frameset rows="21,*,21" cols="*" frameborder="NO" border="0" framespacing="0">
<frame name="header" src="about :blank" scrolling="NO" noresize>
<frame name="main" src="about :blank">
<frame name="footer" src="about :blank" scrolling="NO" noresize>
</frameset>
</frameset>
</frameset>
|
|
#4
|
|||
|
|||
|
for the frame borders, you should be using 0 or 1 not NO, that can cause some problems
|
|
#5
|
|||
|
|||
|
Thanks, I have been looking at this and have made the changes but it doesn't help my cause
|
![]() |
| Viewing: Dev Articles Community Forums > Programming > Programming Tools > HTML: Frames & Frame borders |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|