|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
Borders Not Working Out as I want Them too...
http://www.westgeauga.k12.oh.us/hs/75/index.shtml
The problem with the above page is the borders. I want them to all be the same size as the outside borders but the ones where they double up are 2x as thick. How do you fix problems like that? I've been pondering it over an hour and figured I'd ask. Also if I want the back ground to be repeating, like everything on the left of the red content box, and everything on the right of it... so it just expands to the users browser width how would I do that? Thanks |
|
#2
|
||||
|
||||
|
Ugh, Dreamweaver. http://www.w3.org/TR/CSS21/tables.h...border-collapse
The borders don't show up in Firefox. http://www.hut.fi/u/hsivonen/doctype http://www.alistapart.com/articles/doctype/ http://www.juicystudio.com/choosing-doctype/ http://www.w3.org/QA/2002/04/valid-dtd-list.html Why tables for layout is stupid Why avoiding tables (for layout) is important No, I'm not advocating the use of absolute positioning, which is what many people immediately think of when confronted with the thought of a tableless layout. I'm advocating using CSS in general. I find that floats and margins can be very useful for positioning elements. I do use absolute positioning once in a while, when it really is the best way to position an element.
__________________
Spreading knowledge, one newbie at a time. Learn CSS. | PHP includes | X/HTML Validator | CSS validator | Dynamic Site Solutions Design/program for Firefox (and/or Opera), apply fixes for IE, not the other way around. I'm looking for new clients. |
|
#3
|
||||
|
||||
|
Use CSS.
You can specify, for example, Code:
.yertable {
border-left: 1px solid #FFFFFF;
border-right: 1px solid #FFFFFF;
}
You can also specify something like Code:
body {
background-image: url(filename);
background-repeat: repeat;
}
Take a look here: http://www.w3schools.com/css/default.asp to learn more CSS. There's a lot you can do. Edit: Actually, I think it looks much better without the borders. |
![]() |
| Viewing: Dev Shed Forums > Web Design > Web Design Help > Borders Not Working Out as I want Them too... |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|