Jump to content

set bottom border to 1px of <TD> only


jasonc

Recommended Posts

i have tried the following but this did not work

 

<tr style="border-bottom: 1px;">

 

my full code...

 

what should i add to make the bottom border of the last <td> to 1px in height.

 

<table width="970">
    <tr>
      <td width="120"><div align="center">header1</div></td>
  <td width="167">header2</td>
  <td width="556">header3</td>
  <td width="107"><div align="center">header4</div></td>
</tr>
<? for ($i = 0; $i < $numberofrows; $i++) {
$h1 = mysql_result($data, $i, "h1");
$h2 = mysql_result($data, $i, "h2");
$h3 = mysql_result($data, $i, "h3");
$h4 = mysql_result($data, $i, "h4");
?>
<tr>
	<td align="left" valign="top"><div align="center"><?=$h1;?></div></td>
	<td align="left" valign="top"><?=$h2);?></td>
	<td align="left" valign="top"><?=$h3;?></td>
	<td valign="top"><div align="center"><?=$h4;?></div></td>
</tr>
<? } ?>
</table>

Link to comment
https://forums.phpfreaks.com/topic/111893-set-bottom-border-to-1px-of-only/
Share on other sites

i did place it in the td itself...

 

it works !  only in FireFox tho

 

not in Internet Explorer

 

here is my code...

 

<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>

<body>
<table width="100%" style="border-collapse:collapse">
  <tr style="border-bottom: 1px solid #000000">
    <td> </td>
    <td> </td>
  </tr>
  <tr style="border-bottom: 1px solid #000000">
    <td> </td>
    <td> </td>
  </tr>
  <tr style="border-bottom: 1px solid #000000">
    <td> </td>
    <td> </td>
  </tr>
  <tr style="border-bottom: 1px solid #000000">
    <td> </td>
    <td> </td>
  </tr>
  <tr style="border-bottom: 1px solid #000000">
    <td> </td>
    <td> </td>
  </tr>
</table>
</body>
</html>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.