vote up 0 vote down star
1

I'm trying to get a DIV element into a table cell, in a way in which the DIV spreads along all the cell's area. But, for unknown reason, a 1px border appears; as far as I know, it's neither part of the table or the div (table has no borders, padding or spacing, and the div has no margin or padding). Perhaps you can spot me the bug?

<html>
  <head>
    <style type="text/css">
      #arrow {
        border-style: solid;
        margin: 0;
        padding: 0;
        border-width: 100px 0px 100px 50px;
        border-color: blue blue blue red;
      }

      table {
        border-collapse: collapse;
        border-style: none;
        padding: 0px;
        spacing: 0px;
      }
    </style>
  </head>

  <body>
    <table>
      <tr>
        <td bgcolor="red">
          Blah,
        </td>
    <td>
      <div id="arrow"><!----></div>
    </td>
        <td bgcolor="blue">
          blah.
        </td>
      </tr>
    </table>

flag

3 Answers

vote up 1 vote down check
<table cellspacing="0" cellpadding="0" border="0">

-- or --

td { padding:0 }
link|flag
vote up 1 vote down

Add styling for the table cell(s):

 <html>
  <head>
    <style type="text/css">
      #arrow {
        border-style: solid;
        margin: 0;
        padding: 0;
        border-width: 100px 0px 100px 50px;
        border-color: blue blue blue red;
      }

      table {
        border-collapse: collapse;
        border-style: none;
        padding: 0px;}

    	td  { padding:0; border:0;}

    </style>
  </head>

  <body>
    <table>
      <tr>
        <td bgcolor="red">
          Blah,
        </td>
    <td>
      <div id="arrow"><!----></div>
    </td>
        <td bgcolor="blue">
          blah.
        </td>
      </tr>
    </table>
</body>
</html>
link|flag
I gave the correct answer to Abraham Pinzur, as he responded earlier, but thanks anyway! – Alejandro Atienza Ramos Feb 7 at 0:20
You're welcome. I should have mentioned that a good thing to do with your css is reset the browser styles first off. Check out meyerweb.com/eric/tools/… for a great example. – Jared Feb 7 at 1:50
vote up 2 vote down

CSS property is "border-spacing" instead of "spacing"

In addition I reset tables using

outline: 0;
link|flag
Thanks! Anyway, the problem persists. – Alejandro Atienza Ramos Feb 7 at 0:18

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.