
November 4th, 2004, 07:47 PM
|
 |
Contributing User
|
|
Join Date: Nov 2003
Posts: 445
  
Time spent in forums: 6 Days 1 h 35 m 32 sec
Reputation Power: 9
|
|
When I print preview the page it looks perfect but when I print it the lines inside the table are zagged lines. How can I have the interior lines the same as the exterior border?
CORRECTION!!!! Netscape shows the page differently than Internet Explorer!!! Can I cotrect that?
I have the folowing html code: Quote: <HTML>
<HEAD>
<TITLE>advanced styles</TITLE>
<LINK REL="stylesheet" TYPE="text/css" HREF="advcss.css">
</HEAD>
<BODY>
<TABLE BORDER="1" CELLSPACING="0" CELLPADDING="1">
<TR>
<TD>Advanced stylesheet example1</TD>
<TD>Advanced stylesheet example2</TD>
</TR>
<TR>
<TD>Advanced stylesheet example!</TD>
</TR>
</TABLE>
<BR>
</BODY>
</HTML> |
and the css definition: Quote: BODY {
SCROLLBAR-FACE-COLOR: #000000;
FONT-SIZE: 8pt;
BACKGROUND: #FFFFF;
COLOR: #000000;
SCROLLBAR-ARROW-COLOR: #FFFF00;
SCROLLBAR-TRACK-COLOR: #c0c0c0;
FONT-FAMILY: verdana, arial, ms sans serif;
SCROLLBAR-BASE-COLOR: #FFFFFF
}
TABLE {
BORDER-RIGHT: #000000 1px solid;
PADDING-RIGHT: 1px;
BORDER-TOP: #000000 1px solid;
PADDING-LEFT: 1px;
FONT-SIZE: 8pt;
MARGIN: 0px;
BORDER-LEFT: #000000 1px solid;
COLOR: #000000;
BORDER-BOTTOM: #000000 1px solid;
FONT-FAMILY: verdana, arial, ms sans serif;
BACKGROUND-COLOR: #FFFFFF
} |
Last edited by epanagio : November 4th, 2004 at 07:53 PM.
|