erg well i'm probably the problem. havent used css in awhile so i'm rusty.. but i'm having trouble with making a border for my table row, the code looks like this:
<TR style="border: 3px solid #013310;">
if anyone knows whats wrong please help. and if theres nothign worng then its probably the host or my <span style='color:blue' title='I'm naughty, are you naughty?'>smurf</span> computer
css problems
Moderator: General Moderators
- cheatboy00
- Forum Contributor
- Posts: 151
- Joined: Sat Jun 29, 2002 10:36 am
- Location: canada
- Contact:
- cheatboy00
- Forum Contributor
- Posts: 151
- Joined: Sat Jun 29, 2002 10:36 am
- Location: canada
- Contact:
but you can edit the single <td>s to do so.
haven't tested this but something like that should work
Code: Select all
...
<style type="text/css">
td.firstHighlight { border-top:3px; border-right:0px; border-bottom:3px ;border-left: 3px; }
tr.highlight td { border-top:3px; border-right:0px; border-bottom:3px ;border-left: 0px; }
td.lastHighlight { border-top:3px; border-right:3px; border-bottom:3px ;border-left: 0px; }
</style></head><body>
<table><tr>....</tr>
<tr class="highlight>
<td class="firstHighlight">...</td>
<td>....</td>
...
<td class="highlightLast">...</td>
</tr></table>- cheatboy00
- Forum Contributor
- Posts: 151
- Joined: Sat Jun 29, 2002 10:36 am
- Location: canada
- Contact:
- cheatboy00
- Forum Contributor
- Posts: 151
- Joined: Sat Jun 29, 2002 10:36 am
- Location: canada
- Contact: