Jul 14, 2004 #1 Josh42 Programmer Dec 22, 2000 7 US Is there any way to create a border to a layout cell. I tried using CSS to do this but it repeated the border throughout the cell. Thanks!
Is there any way to create a border to a layout cell. I tried using CSS to do this but it repeated the border throughout the cell. Thanks!
Jul 14, 2004 #2 LTeeple Programmer Aug 21, 2002 362 CA How did you try it in css? whatever.css Code: .layoutcell { border-top: 1; border-bottom: 1; border-right: 1; border-left: 1; } whatever.htm Code: <table> <tr> <td class="layoutcell">stuff</td> </tr> </table> Cheers! Laura Upvote 0 Downvote
How did you try it in css? whatever.css Code: .layoutcell { border-top: 1; border-bottom: 1; border-right: 1; border-left: 1; } whatever.htm Code: <table> <tr> <td class="layoutcell">stuff</td> </tr> </table> Cheers! Laura
Jul 14, 2004 Thread starter #3 Josh42 Programmer Dec 22, 2000 7 US The CSS you gave me doesn't do anything visible. I tried doing this: .mystyle { border-top: 1; border-bottom: 1; border-right: 1; border-left: 1; border: 1px solid #000000; } However, the border is repeated throughout the cell like lined paper. No good. I just want it to appear around the border. How is this done? Upvote 0 Downvote
The CSS you gave me doesn't do anything visible. I tried doing this: .mystyle { border-top: 1; border-bottom: 1; border-right: 1; border-left: 1; border: 1px solid #000000; } However, the border is repeated throughout the cell like lined paper. No good. I just want it to appear around the border. How is this done?
Jul 14, 2004 #4 lebisol IS-IT--Management Jan 3, 2003 3,325 US <html> <head> <title>Untitled Document</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <style> .cellborder { border: 1px solid #000000; }</style> <body> <table width="109" height="77" border="0" cellpadding="0" cellspacing="0"> <tr> <td> </td> </tr> <tr> <td> </td> </tr> <tr> <td class="cellborder">here I am</td> </tr> </table> </body> </html> border arround single cell....IS there. All the best! :--------------------------------------------------------------------------: ok,ok...I did shoot the deputy but he told me he was the sheriff! :--------------------------------------------------------------------------: Upvote 0 Downvote
<html> <head> <title>Untitled Document</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <style> .cellborder { border: 1px solid #000000; }</style> <body> <table width="109" height="77" border="0" cellpadding="0" cellspacing="0"> <tr> <td> </td> </tr> <tr> <td> </td> </tr> <tr> <td class="cellborder">here I am</td> </tr> </table> </body> </html> border arround single cell....IS there. All the best! :--------------------------------------------------------------------------: ok,ok...I did shoot the deputy but he told me he was the sheriff! :--------------------------------------------------------------------------: