Add borders to table on safari browser....

  • Thread starter Thread starter Chetana
  • Start date Start date
C

Chetana

Hi All,
I want to set borders to table .
I have used

<table border=8px style="border:8px ;color:#000000;border-
color:#FFFFFF" cellpadding="0" cellspacing="0" frame="box"
rules="groups" width="584px">

It is working in firefox and IE but not in safari...

I doesnot want it through css file .

Thanks.
 
Hi All,
I want to set borders to table .
I have used

 <table  border=8px style="border:8px ;color:#000000;border-
color:#FFFFFF" cellpadding="0" cellspacing="0" frame="box"
rules="groups" width="584px">

It is working in firefox and IE but not in safari...

I doesnot want it through css file .

Thanks.

You could try adding within the style element the following...
style="border-style: solid;" in addition to what you already have in
there and it should work.
 
Back
Top