Topic: td background doesn't work (Page 1 of 1) |
|
---|---|
Paranoid (IV) Inmate From: NZ |
posted 10-29-2003 01:52
Hi, guys. Could you help me about this, please? code: <td bgcolor="#C0C0C0" colspan="2" style={font-size:13px;text-align:center;}><b>Order Form</b></td>
code: <td colspan="2" style={font-size:13px;text-align:center; background-color: #c0c0c0}><b>Order Form</b></td>
|
Maniac (V) Inmate From: California |
posted 10-29-2003 01:57
When using inline styles, you must follow HTML conventions. That is to say, you quote your style rules, like this: code: <td bgcolor="#C0C0C0" colspan="2" style="font-size:13px;text-align:center;"><b>Order Form</b></td>
|
Paranoid (IV) Inmate From: NZ |
posted 10-29-2003 02:05
Hi, thanks for your help. That is great. code: <td colspan="2" style="font-size:13px;text-align:center;background-color: #c0c0c0"><b>Order Form</b></td>
code: <head><link rel="stylesheet" type="text/css" href="hiroki.css"></head>
code: <td colspan="2" style={"font-size:13px;text-align:center;background-color: #c0c0c0"}><b>Order Form</b></td>
|
Maniac (V) Inmate From: there...no..there..... |
posted 10-29-2003 02:11
Not really sure what you are asking on the last part. You want to put your style sheets externally? code: <head><link rel="stylesheet" type="text/css" href="hiroki.css"></head>
|
Maniac (V) Inmate From: California |
posted 10-29-2003 02:14
[EDIT: Not fast enough.] code: <head><link rel="stylesheet" type="text/css" href="hiroki.css"></head>
code: <head><style>
code: <td colspan="2" style="font-size:13px; text-align:center; background-color: #c0c0c0"><b>Order Form</b></td>
|
Paranoid (IV) Inmate From: NZ |
posted 10-29-2003 04:50
Hi, thanks for your relies. |