Wrox Home  
Search P2P Archive for: Go

  Return to Index  

asptoday_discuss thread: table without border


Message #1 by "Tan Chye Ting" <chyeting18@h...> on Tue, 15 Jan 2002 02:56:31
I'm , trying to draw a dynamic chart using table...but my problem is the 

chart looks as if there is a separating line between the negative bar and 

the positive bar.I tried to set the border atribute in TABLE to zero, but 

it still happened.How to I eliminate the table border?
Message #2 by "Bill Reynolds" <breynolds@g...> on Tue, 15 Jan 2002 07:54:59 -0500
Hi!



You can use a css style sheet to eliminate the border on your page.

Here is an example:



.nobord {

	border : none;

	font-family : Arial, Helvetica, sans-serif;

	font-size : 9pt;

	font-weight : normal;

	color : #000000;

	background-color : #C0C0C0;

}



Then use the class attribute in your table.



Thanks,

Bill Reynolds

Web Application Developer

Graphic Enterprises, Inc.

3874 Highland Park NW

North Canton, OH 44720.8080

xxx.xxx.xxxx  x204 (p)

xxx.xxx.xxxx  (f)





-----Original Message-----

From: Tan Chye Ting [mailto:chyeting18@h...]

Sent: Monday, January 14, 2002 9:57 PM

To: ASPToday Discuss

Subject: [asptoday_discuss] table without border



I'm , trying to draw a dynamic chart using table...but my problem is the



chart looks as if there is a separating line between the negative bar

and

the positive bar.I tried to set the border atribute in TABLE to zero,

but

it still happened.How to I eliminate the table border?

Message #3 by "Tan Chye Ting" <chyeting18@h...> on Wed, 16 Jan 2002 01:29:52
according to your reply , i have to use the class attribute in my 

table,rite?could you please tell me how to go bout doing it?Please give me 

a simple example of the table and how to integrate with the css coding you 

gave me earlier on.Thank a lot





> Hi!

> 

> You can use a css style sheet to eliminate the border on your page.

> Here is an example:

> 

> .nobord {

> 	border : none;

> 	font-family : Arial, Helvetica, sans-serif;

> 	font-size : 9pt;

> 	font-weight : normal;

> 	color : #000000;

> 	background-color : #C0C0C0;

> }

> 

> Then use the class attribute in your table.

> 

> Thanks,

> Bill Reynolds

> Web Application Developer

> Graphic Enterprises, Inc.

> 3874 Highland Park NW

> North Canton, OH 44720.8080

> xxx.xxx.xxxx  x204 (p)

> xxx.xxx.xxxx  (f)

> 

> 

> -----Original Message-----

> From: Tan Chye Ting [mailto:chyeting18@h...]

> Sent: Monday, January 14, 2002 9:57 PM

> To: ASPToday Discuss

> Subject: [asptoday_discuss] table without border

> 

> I'm , trying to draw a dynamic chart using table...but my problem is the

> 

> chart looks as if there is a separating line between the negative bar

> and

> the positive bar.I tried to set the border atribute in TABLE to zero,

> but

> it still happened.How to I eliminate the table border?

Message #4 by "Bill Reynolds" <breynolds@g...> on Wed, 16 Jan 2002 07:28:19 -0500
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

<html>

<head>

	<title>Untitled</title>

	<style type=3D"text/css">

		.nobord {

			border : none;

			font-family : Arial, Helvetica, sans-serif;

			font-size : 9pt;

			font-weight : normal;

			color : #000000;

			background-color : #ffffff;

		}

	</style>

</head>

<body>

	<table cellpadding=3D"3" cellspacing=3D"0" align=3D"center"

class=3D"nobord">

		<tr>

			<td>Data here</td>

			<td>Data here</td>

			<td>Data here</td>

		</tr>

		<tr>

			<td>Data here</td>

			<td>Data here</td>

			<td>Data here</td>

		</tr>

		<tr>

			<td>Data here</td>

			<td>Data here</td>

			<td>Data here</td>

		</tr>

	</table>

</body>

</html>



Thanks,

Bill Reynolds

Web Application Developer

Graphic Enterprises, Inc.

3874 Highland Park NW

North Canton, OH 44720.8080

xxx.xxx.xxxx  x204 (p)

xxx.xxx.xxxx  (f)





-----Original Message-----

From: Tan Chye Ting [mailto:chyeting18@h...]

Sent: Tuesday, January 15, 2002 8:30 PM

To: ASPToday Discuss

Subject: [asptoday_discuss] RE: table without border



according to your reply , i have to use the class attribute in my

table,rite?could you please tell me how to go bout doing it?Please give

me

a simple example of the table and how to integrate with the css coding

you

gave me earlier on.Thank a lot





> Hi!

>

> You can use a css style sheet to eliminate the border on your page.

> Here is an example:

>

> .nobord {

> 	border : none;

> 	font-family : Arial, Helvetica, sans-serif;

> 	font-size : 9pt;

> 	font-weight : normal;

> 	color : #000000;

> 	background-color : #C0C0C0;

> }

>

> Then use the class attribute in your table.

>

> Thanks,

> Bill Reynolds

> Web Application Developer

> Graphic Enterprises, Inc.

> 3874 Highland Park NW

> North Canton, OH 44720.8080

> xxx.xxx.xxxx  x204 (p)

> xxx.xxx.xxxx  (f)

>

>

> -----Original Message-----

> From: Tan Chye Ting [mailto:chyeting18@h...]=3D20

> Sent: Monday, January 14, 2002 9:57 PM

> To: ASPToday Discuss

> Subject: [asptoday_discuss] table without border

>

> I'm , trying to draw a dynamic chart using table...but my problem is

the

>

> chart looks as if there is a separating line between the negative bar

> and=3D20

> the positive bar.I tried to set the border atribute in TABLE to zero,

> but=3D20

> it still happened.How to I eliminate the table border?




  Return to Index