|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
AT&T devCentral & BlackBerry(r) Webcast Series: BlackBerry and GPS -Build Location Awareness into your BlackBerry Applications, July 10th-1:00PM EST. Register Today!
|
|
#1
|
|||
|
|||
|
border color
you know in html when you go <table border="2"> and the border style is grey and ridged. How would I go about changing this to say just a flat color. If I could do this in css, that would be preferable...
|
|
#2
|
|||
|
|||
|
RE: border color
Try applying this style to your table..
Code:
.table1 {
border: 2px solid #999999;
}
|
|
#3
|
|||
|
|||
|
RE: border color
won't that only put a border around the edge of the table... not betweent the cells?
|
|
#4
|
|||
|
|||
|
RE: border color
To colour between cells you have follow this method.. Give a colour to the background of the table. Apply a different color (eg: Colour of the page Background) to the cells (td bgcolor). So the space between the cells will take over the colour you applied to the table background..
I hope that helps |
|
#5
|
|||
|
|||
|
RE: border color
to do that i use:
<table width="xxx" height="xxx" border="x" cellpadding="x" cellspacing="x" bgcolor="#xxxxxx" style="border-collapse: collapse" bordercolor="#xxxxxx"> |
![]() |
| Viewing: Codewalkers Forums > Other Technologies > Client Side Things > border color |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|
|
|
|