MKashlev
08-04-2003, 09:19 PM
Hello, I have a problem with the table format in CSS.
How can I remove all the space (in yellow) between the cells? Please take a look at the following page:
http://mkashlev.dyndns.org:7771/ISSI2003-web/css3.html
I want all the blue stuff together without any spaces between pictures. How can i accomplish this?
The code is as follows:
<?xml version="1.0"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>CSS TEST</title>
<style type="text/css">
body {
margin:0;
padding:0;
color:#000;
background: #f5f5f5;
font: 0.8em Verdana, arial, sans-serif;
}
div.centered {text-align: center;}
div.centered table {margin:4 auto; text-align:left; width:700px; height:600; background-color:yellow; border:0px;}
td.main {margin:0px; padding 0px;}
td.logo {margin:0px; padding 0px; width:97px; height:79px; border:0px}
td.title {margin:0px; padding 0px; width:595px; height:79px; border:0px}
td.navbar {margin:0px; padding 0px; width:97px; border:0px}
td.body {margin:0px; padding 0px;}
td.hrleft {margin:0px; padding 0px; width:97; height:9;}
td.hrright {margin:0px; padding 0px; width:595; height:9;}
td.vrtop {margin:0px; padding 0px;}
td.vrmid {margin:0px; padding 0px; width:8; height:9;}
td.vrbottom {margin:0px; padding 0px; width:8px; height:155px border:0px}
td.bottombar {margin:0px; padding 0px; width:105px; border:0px}
img.logo
{
height: 79px;
width: 97px;
border: 0px;
margin: 0px;
}
img.title
{
height: 79px;
width: 595px;
border: 0px;
}
img.navbar
{
width: 97px;
padding: 0px;
border: 0px;
}
img.vrtop
{
height: 79px;
width: 8px;
}
img.vrmid
{
height: 9px;
width: 8px;
}
img.vrbottom
{
height: 155px;
width: 8px;
}
img.hrleft
{
height: 9px;
width: 97px;
}
img.hrright
{
height: 9px;
width: 595px;
}
img.bottombar
{
width: 105px;
border: 0px;
}
</style>
</head>
<body>
<div class="centered">
<table>
<TR>
<TD class="logo">
<A HREF="http://www.weizmann.ac.il">
<IMG class="logo" SRC="images/Weizmann-Institute.gif" ALT=""></A></TD>
<TD class="vrtop">
<IMG class="vrtop" SRC="images/about_02.gif" ALT=""></TD>
<TD class="title">
<IMG class="title" SRC="images/about_03.gif" ALT=""></TD>
</TR>
<TR>
<TD class="hrleft">
<IMG class="hrleft" SRC="images/about_04.gif" ALT=""></TD>
<TD class="vrmid">
<IMG class="vrmid" SRC="images/about_05.gif" ALT=""></TD>
<TD class="hrright">
<IMG class="hrright" SRC="images/about_06.gif" ALT=""></TD>
</TR>
<TR>
<TD class="navbar" bgcolor=yellow>
<A HREF="index.html">
<IMG class="navbar" SRC="images/Home.gif" HEIGHT=34 ALT=""></A>
</TD>
<TD class="vrbottom" ROWSPAN=5 bgcolor=pink>
<IMG class="vrbottom" SRC="images/about_08.gif" ALT="">
</TD>
<TD class="body" ROWSPAN=6 bgcolor=red>
body
</TD>
</TR>
<TR valign=top>
<TD class="navbar" bgcolor=green>
<A HREF="about.html">
<IMG class="navbar" SRC="images/About.gif" HEIGHT=31 ALT=""></A>
</TD>
</TR>
<TR valign=top>
<TD class="navbar" bgcolor=orange>
<A HREF="students.html">
<IMG class="navbar" SRC="images/Students.gif" HEIGHT=37 ALT=""></A>
</TD>
</TR>
<TR valign=top>
<TD class="navbar" bgcolor=brown>
<A HREF="pics.html">
<IMG class="navbar" SRC="images/Pictures.gif" HEIGHT=38 ALT=""></A>
</TD>
</TR>
<TR valign=top>
<TD class="navbar" bgcolor=blue>
<IMG class="navbar" SRC="images/about_13.gif" HEIGHT=15 ALT="">
</TD>
</TR>
<TR valign=top>
<TD class="bottombar" colspan=2 bgcolor=purple>
<IMG class="bottombar" SRC="images/about_13.gif" height=300 ALT="">
</TD>
</TR>
</table>
</div>
</body>
</html>
Thanks in advance,
~Dmitry
How can I remove all the space (in yellow) between the cells? Please take a look at the following page:
http://mkashlev.dyndns.org:7771/ISSI2003-web/css3.html
I want all the blue stuff together without any spaces between pictures. How can i accomplish this?
The code is as follows:
<?xml version="1.0"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>CSS TEST</title>
<style type="text/css">
body {
margin:0;
padding:0;
color:#000;
background: #f5f5f5;
font: 0.8em Verdana, arial, sans-serif;
}
div.centered {text-align: center;}
div.centered table {margin:4 auto; text-align:left; width:700px; height:600; background-color:yellow; border:0px;}
td.main {margin:0px; padding 0px;}
td.logo {margin:0px; padding 0px; width:97px; height:79px; border:0px}
td.title {margin:0px; padding 0px; width:595px; height:79px; border:0px}
td.navbar {margin:0px; padding 0px; width:97px; border:0px}
td.body {margin:0px; padding 0px;}
td.hrleft {margin:0px; padding 0px; width:97; height:9;}
td.hrright {margin:0px; padding 0px; width:595; height:9;}
td.vrtop {margin:0px; padding 0px;}
td.vrmid {margin:0px; padding 0px; width:8; height:9;}
td.vrbottom {margin:0px; padding 0px; width:8px; height:155px border:0px}
td.bottombar {margin:0px; padding 0px; width:105px; border:0px}
img.logo
{
height: 79px;
width: 97px;
border: 0px;
margin: 0px;
}
img.title
{
height: 79px;
width: 595px;
border: 0px;
}
img.navbar
{
width: 97px;
padding: 0px;
border: 0px;
}
img.vrtop
{
height: 79px;
width: 8px;
}
img.vrmid
{
height: 9px;
width: 8px;
}
img.vrbottom
{
height: 155px;
width: 8px;
}
img.hrleft
{
height: 9px;
width: 97px;
}
img.hrright
{
height: 9px;
width: 595px;
}
img.bottombar
{
width: 105px;
border: 0px;
}
</style>
</head>
<body>
<div class="centered">
<table>
<TR>
<TD class="logo">
<A HREF="http://www.weizmann.ac.il">
<IMG class="logo" SRC="images/Weizmann-Institute.gif" ALT=""></A></TD>
<TD class="vrtop">
<IMG class="vrtop" SRC="images/about_02.gif" ALT=""></TD>
<TD class="title">
<IMG class="title" SRC="images/about_03.gif" ALT=""></TD>
</TR>
<TR>
<TD class="hrleft">
<IMG class="hrleft" SRC="images/about_04.gif" ALT=""></TD>
<TD class="vrmid">
<IMG class="vrmid" SRC="images/about_05.gif" ALT=""></TD>
<TD class="hrright">
<IMG class="hrright" SRC="images/about_06.gif" ALT=""></TD>
</TR>
<TR>
<TD class="navbar" bgcolor=yellow>
<A HREF="index.html">
<IMG class="navbar" SRC="images/Home.gif" HEIGHT=34 ALT=""></A>
</TD>
<TD class="vrbottom" ROWSPAN=5 bgcolor=pink>
<IMG class="vrbottom" SRC="images/about_08.gif" ALT="">
</TD>
<TD class="body" ROWSPAN=6 bgcolor=red>
body
</TD>
</TR>
<TR valign=top>
<TD class="navbar" bgcolor=green>
<A HREF="about.html">
<IMG class="navbar" SRC="images/About.gif" HEIGHT=31 ALT=""></A>
</TD>
</TR>
<TR valign=top>
<TD class="navbar" bgcolor=orange>
<A HREF="students.html">
<IMG class="navbar" SRC="images/Students.gif" HEIGHT=37 ALT=""></A>
</TD>
</TR>
<TR valign=top>
<TD class="navbar" bgcolor=brown>
<A HREF="pics.html">
<IMG class="navbar" SRC="images/Pictures.gif" HEIGHT=38 ALT=""></A>
</TD>
</TR>
<TR valign=top>
<TD class="navbar" bgcolor=blue>
<IMG class="navbar" SRC="images/about_13.gif" HEIGHT=15 ALT="">
</TD>
</TR>
<TR valign=top>
<TD class="bottombar" colspan=2 bgcolor=purple>
<IMG class="bottombar" SRC="images/about_13.gif" height=300 ALT="">
</TD>
</TR>
</table>
</div>
</body>
</html>
Thanks in advance,
~Dmitry