Unable To Apply CSS To Table Cell












0














I have table cells with class=image to which I cannot seem to apply any CSS. Here is my markup (nested tables) where the first table shows an example of a typical row:



<table class="outer">
<tr>
<td>
<table class="column" id="leftColumn">
<tr>
<td>
<table class="cell" id="t1">
<tr>
<td><asp:Literal runat="server" ID="t1r2c1" /></td>
<td class="image">
<span id="s1" runat="server">
<asp:PlaceHolder ID="p1" runat="server">
</asp:PlaceHolder>
</span>
</td>
<td><asp:Literal runat="server" ID="t1r2c3" /></td>
<td class="gray"><asp:Literal runat="server" ID="t1r2c4" /></td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<table class="cell" id="t2">
</table>
</td>
</tr>
</table>
</td>
<td>
<table class="column" id="rightColumn">
<tr>
<td>
<table class="cell" id="t3">
</table>
</td>
</tr>
<tr>
<td>
<table class="cell" id="t4">
</table>
</td>
</tr>
<tr>
<td>
<table class="cell" id="t5">
</table>
</td>
</tr>
<tr>
<td>
<table class="cell" id="t6">
</table>
</td>
</tr>
<tr>
<td>
<table class="cell" id="t7">
</table>
</td>
</tr>
<tr>
<td>
<table class="cell" id="t8">
</table>
</td>
</tr>
<tr>
<td>
<table class="messages" id="t9">
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>


Here is my CSS:



.outer
{
border: none;
margin-left: auto;
margin-right: auto;
}
.outer td
{
vertical-align: top;
}
.column
{
border: none;
}
#rightColumn table, #leftColumn table
{
width: 100%;
}
.cell
{
border-collapse: collapse;
border: 2px solid black;
margin: 5px;
}
.cell td
{
border-collapse: collapse;
border: 2px solid black;
text-align: center;
vertical-align: middle;
padding-left: 3px;
padding-right: 3px;
padding-top: 0px;
padding-bottom: 0px;
font-size: 11pt;
}
.cell .image
{
padding: 0;
margin: 0;
height: 2px;
width: 7px;
}
.messages td
{
border-collapse: collapse;
border: 2px solid #FF0000;
text-align: left;
}
h1
{
text-align: center;
font-size: 150%;
}
h2
{
text-align: center;
}
th
{
height: 24px;
background-color: #2B60DE;
color: #FFFFFF;
}
.gray
{
background-color: #AAAAAA;
}


Nothing I do to .cell .image seems to be able to shrink the images below a certain size -- which is already much smaller than the actual images so I know some shrinking is already going on.



Any advice is appreciated.










share|improve this question





























    0














    I have table cells with class=image to which I cannot seem to apply any CSS. Here is my markup (nested tables) where the first table shows an example of a typical row:



    <table class="outer">
    <tr>
    <td>
    <table class="column" id="leftColumn">
    <tr>
    <td>
    <table class="cell" id="t1">
    <tr>
    <td><asp:Literal runat="server" ID="t1r2c1" /></td>
    <td class="image">
    <span id="s1" runat="server">
    <asp:PlaceHolder ID="p1" runat="server">
    </asp:PlaceHolder>
    </span>
    </td>
    <td><asp:Literal runat="server" ID="t1r2c3" /></td>
    <td class="gray"><asp:Literal runat="server" ID="t1r2c4" /></td>
    </tr>
    </table>
    </td>
    </tr>
    <tr>
    <td>
    <table class="cell" id="t2">
    </table>
    </td>
    </tr>
    </table>
    </td>
    <td>
    <table class="column" id="rightColumn">
    <tr>
    <td>
    <table class="cell" id="t3">
    </table>
    </td>
    </tr>
    <tr>
    <td>
    <table class="cell" id="t4">
    </table>
    </td>
    </tr>
    <tr>
    <td>
    <table class="cell" id="t5">
    </table>
    </td>
    </tr>
    <tr>
    <td>
    <table class="cell" id="t6">
    </table>
    </td>
    </tr>
    <tr>
    <td>
    <table class="cell" id="t7">
    </table>
    </td>
    </tr>
    <tr>
    <td>
    <table class="cell" id="t8">
    </table>
    </td>
    </tr>
    <tr>
    <td>
    <table class="messages" id="t9">
    </table>
    </td>
    </tr>
    </table>
    </td>
    </tr>
    </table>


    Here is my CSS:



    .outer
    {
    border: none;
    margin-left: auto;
    margin-right: auto;
    }
    .outer td
    {
    vertical-align: top;
    }
    .column
    {
    border: none;
    }
    #rightColumn table, #leftColumn table
    {
    width: 100%;
    }
    .cell
    {
    border-collapse: collapse;
    border: 2px solid black;
    margin: 5px;
    }
    .cell td
    {
    border-collapse: collapse;
    border: 2px solid black;
    text-align: center;
    vertical-align: middle;
    padding-left: 3px;
    padding-right: 3px;
    padding-top: 0px;
    padding-bottom: 0px;
    font-size: 11pt;
    }
    .cell .image
    {
    padding: 0;
    margin: 0;
    height: 2px;
    width: 7px;
    }
    .messages td
    {
    border-collapse: collapse;
    border: 2px solid #FF0000;
    text-align: left;
    }
    h1
    {
    text-align: center;
    font-size: 150%;
    }
    h2
    {
    text-align: center;
    }
    th
    {
    height: 24px;
    background-color: #2B60DE;
    color: #FFFFFF;
    }
    .gray
    {
    background-color: #AAAAAA;
    }


    Nothing I do to .cell .image seems to be able to shrink the images below a certain size -- which is already much smaller than the actual images so I know some shrinking is already going on.



    Any advice is appreciated.










    share|improve this question



























      0












      0








      0







      I have table cells with class=image to which I cannot seem to apply any CSS. Here is my markup (nested tables) where the first table shows an example of a typical row:



      <table class="outer">
      <tr>
      <td>
      <table class="column" id="leftColumn">
      <tr>
      <td>
      <table class="cell" id="t1">
      <tr>
      <td><asp:Literal runat="server" ID="t1r2c1" /></td>
      <td class="image">
      <span id="s1" runat="server">
      <asp:PlaceHolder ID="p1" runat="server">
      </asp:PlaceHolder>
      </span>
      </td>
      <td><asp:Literal runat="server" ID="t1r2c3" /></td>
      <td class="gray"><asp:Literal runat="server" ID="t1r2c4" /></td>
      </tr>
      </table>
      </td>
      </tr>
      <tr>
      <td>
      <table class="cell" id="t2">
      </table>
      </td>
      </tr>
      </table>
      </td>
      <td>
      <table class="column" id="rightColumn">
      <tr>
      <td>
      <table class="cell" id="t3">
      </table>
      </td>
      </tr>
      <tr>
      <td>
      <table class="cell" id="t4">
      </table>
      </td>
      </tr>
      <tr>
      <td>
      <table class="cell" id="t5">
      </table>
      </td>
      </tr>
      <tr>
      <td>
      <table class="cell" id="t6">
      </table>
      </td>
      </tr>
      <tr>
      <td>
      <table class="cell" id="t7">
      </table>
      </td>
      </tr>
      <tr>
      <td>
      <table class="cell" id="t8">
      </table>
      </td>
      </tr>
      <tr>
      <td>
      <table class="messages" id="t9">
      </table>
      </td>
      </tr>
      </table>
      </td>
      </tr>
      </table>


      Here is my CSS:



      .outer
      {
      border: none;
      margin-left: auto;
      margin-right: auto;
      }
      .outer td
      {
      vertical-align: top;
      }
      .column
      {
      border: none;
      }
      #rightColumn table, #leftColumn table
      {
      width: 100%;
      }
      .cell
      {
      border-collapse: collapse;
      border: 2px solid black;
      margin: 5px;
      }
      .cell td
      {
      border-collapse: collapse;
      border: 2px solid black;
      text-align: center;
      vertical-align: middle;
      padding-left: 3px;
      padding-right: 3px;
      padding-top: 0px;
      padding-bottom: 0px;
      font-size: 11pt;
      }
      .cell .image
      {
      padding: 0;
      margin: 0;
      height: 2px;
      width: 7px;
      }
      .messages td
      {
      border-collapse: collapse;
      border: 2px solid #FF0000;
      text-align: left;
      }
      h1
      {
      text-align: center;
      font-size: 150%;
      }
      h2
      {
      text-align: center;
      }
      th
      {
      height: 24px;
      background-color: #2B60DE;
      color: #FFFFFF;
      }
      .gray
      {
      background-color: #AAAAAA;
      }


      Nothing I do to .cell .image seems to be able to shrink the images below a certain size -- which is already much smaller than the actual images so I know some shrinking is already going on.



      Any advice is appreciated.










      share|improve this question















      I have table cells with class=image to which I cannot seem to apply any CSS. Here is my markup (nested tables) where the first table shows an example of a typical row:



      <table class="outer">
      <tr>
      <td>
      <table class="column" id="leftColumn">
      <tr>
      <td>
      <table class="cell" id="t1">
      <tr>
      <td><asp:Literal runat="server" ID="t1r2c1" /></td>
      <td class="image">
      <span id="s1" runat="server">
      <asp:PlaceHolder ID="p1" runat="server">
      </asp:PlaceHolder>
      </span>
      </td>
      <td><asp:Literal runat="server" ID="t1r2c3" /></td>
      <td class="gray"><asp:Literal runat="server" ID="t1r2c4" /></td>
      </tr>
      </table>
      </td>
      </tr>
      <tr>
      <td>
      <table class="cell" id="t2">
      </table>
      </td>
      </tr>
      </table>
      </td>
      <td>
      <table class="column" id="rightColumn">
      <tr>
      <td>
      <table class="cell" id="t3">
      </table>
      </td>
      </tr>
      <tr>
      <td>
      <table class="cell" id="t4">
      </table>
      </td>
      </tr>
      <tr>
      <td>
      <table class="cell" id="t5">
      </table>
      </td>
      </tr>
      <tr>
      <td>
      <table class="cell" id="t6">
      </table>
      </td>
      </tr>
      <tr>
      <td>
      <table class="cell" id="t7">
      </table>
      </td>
      </tr>
      <tr>
      <td>
      <table class="cell" id="t8">
      </table>
      </td>
      </tr>
      <tr>
      <td>
      <table class="messages" id="t9">
      </table>
      </td>
      </tr>
      </table>
      </td>
      </tr>
      </table>


      Here is my CSS:



      .outer
      {
      border: none;
      margin-left: auto;
      margin-right: auto;
      }
      .outer td
      {
      vertical-align: top;
      }
      .column
      {
      border: none;
      }
      #rightColumn table, #leftColumn table
      {
      width: 100%;
      }
      .cell
      {
      border-collapse: collapse;
      border: 2px solid black;
      margin: 5px;
      }
      .cell td
      {
      border-collapse: collapse;
      border: 2px solid black;
      text-align: center;
      vertical-align: middle;
      padding-left: 3px;
      padding-right: 3px;
      padding-top: 0px;
      padding-bottom: 0px;
      font-size: 11pt;
      }
      .cell .image
      {
      padding: 0;
      margin: 0;
      height: 2px;
      width: 7px;
      }
      .messages td
      {
      border-collapse: collapse;
      border: 2px solid #FF0000;
      text-align: left;
      }
      h1
      {
      text-align: center;
      font-size: 150%;
      }
      h2
      {
      text-align: center;
      }
      th
      {
      height: 24px;
      background-color: #2B60DE;
      color: #FFFFFF;
      }
      .gray
      {
      background-color: #AAAAAA;
      }


      Nothing I do to .cell .image seems to be able to shrink the images below a certain size -- which is already much smaller than the actual images so I know some shrinking is already going on.



      Any advice is appreciated.







      html css html-table






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited yesterday









      Brian Tompsett - 汤莱恩

      4,1631337100




      4,1631337100










      asked Jul 26 '12 at 21:40









      Kevin

      61242646




      61242646
























          2 Answers
          2






          active

          oldest

          votes


















          0














          Could be the line-height or font-size preventing the td to become smaller.



          Try setting the tds of the row with the image to line-height: 0px and font-size: 0px






          share|improve this answer





























            0














            I put together a jsfiddle of your example at http://jsfiddle.net/9xLqY/. The styles are being applied just fine when I remove the ASP components:



            <span id="s1" runat="server">
            <asp:PlaceHolder ID="p1" runat="server"></asp:PlaceHolder>
            </span>


            So it must be one of these components that is forcing the cells to be larger than you want. You'll need to add styles for #s1 and #p1.






            share|improve this answer





















              Your Answer






              StackExchange.ifUsing("editor", function () {
              StackExchange.using("externalEditor", function () {
              StackExchange.using("snippets", function () {
              StackExchange.snippets.init();
              });
              });
              }, "code-snippets");

              StackExchange.ready(function() {
              var channelOptions = {
              tags: "".split(" "),
              id: "1"
              };
              initTagRenderer("".split(" "), "".split(" "), channelOptions);

              StackExchange.using("externalEditor", function() {
              // Have to fire editor after snippets, if snippets enabled
              if (StackExchange.settings.snippets.snippetsEnabled) {
              StackExchange.using("snippets", function() {
              createEditor();
              });
              }
              else {
              createEditor();
              }
              });

              function createEditor() {
              StackExchange.prepareEditor({
              heartbeatType: 'answer',
              autoActivateHeartbeat: false,
              convertImagesToLinks: true,
              noModals: true,
              showLowRepImageUploadWarning: true,
              reputationToPostImages: 10,
              bindNavPrevention: true,
              postfix: "",
              imageUploader: {
              brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
              contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
              allowUrls: true
              },
              onDemand: true,
              discardSelector: ".discard-answer"
              ,immediatelyShowMarkdownHelp:true
              });


              }
              });














              draft saved

              draft discarded


















              StackExchange.ready(
              function () {
              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f11678439%2funable-to-apply-css-to-table-cell%23new-answer', 'question_page');
              }
              );

              Post as a guest















              Required, but never shown

























              2 Answers
              2






              active

              oldest

              votes








              2 Answers
              2






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes









              0














              Could be the line-height or font-size preventing the td to become smaller.



              Try setting the tds of the row with the image to line-height: 0px and font-size: 0px






              share|improve this answer


























                0














                Could be the line-height or font-size preventing the td to become smaller.



                Try setting the tds of the row with the image to line-height: 0px and font-size: 0px






                share|improve this answer
























                  0












                  0








                  0






                  Could be the line-height or font-size preventing the td to become smaller.



                  Try setting the tds of the row with the image to line-height: 0px and font-size: 0px






                  share|improve this answer












                  Could be the line-height or font-size preventing the td to become smaller.



                  Try setting the tds of the row with the image to line-height: 0px and font-size: 0px







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Jul 26 '12 at 21:51









                  Horen

                  7,14795098




                  7,14795098

























                      0














                      I put together a jsfiddle of your example at http://jsfiddle.net/9xLqY/. The styles are being applied just fine when I remove the ASP components:



                      <span id="s1" runat="server">
                      <asp:PlaceHolder ID="p1" runat="server"></asp:PlaceHolder>
                      </span>


                      So it must be one of these components that is forcing the cells to be larger than you want. You'll need to add styles for #s1 and #p1.






                      share|improve this answer


























                        0














                        I put together a jsfiddle of your example at http://jsfiddle.net/9xLqY/. The styles are being applied just fine when I remove the ASP components:



                        <span id="s1" runat="server">
                        <asp:PlaceHolder ID="p1" runat="server"></asp:PlaceHolder>
                        </span>


                        So it must be one of these components that is forcing the cells to be larger than you want. You'll need to add styles for #s1 and #p1.






                        share|improve this answer
























                          0












                          0








                          0






                          I put together a jsfiddle of your example at http://jsfiddle.net/9xLqY/. The styles are being applied just fine when I remove the ASP components:



                          <span id="s1" runat="server">
                          <asp:PlaceHolder ID="p1" runat="server"></asp:PlaceHolder>
                          </span>


                          So it must be one of these components that is forcing the cells to be larger than you want. You'll need to add styles for #s1 and #p1.






                          share|improve this answer












                          I put together a jsfiddle of your example at http://jsfiddle.net/9xLqY/. The styles are being applied just fine when I remove the ASP components:



                          <span id="s1" runat="server">
                          <asp:PlaceHolder ID="p1" runat="server"></asp:PlaceHolder>
                          </span>


                          So it must be one of these components that is forcing the cells to be larger than you want. You'll need to add styles for #s1 and #p1.







                          share|improve this answer












                          share|improve this answer



                          share|improve this answer










                          answered Jul 26 '12 at 21:53









                          Bill

                          18.8k474103




                          18.8k474103






























                              draft saved

                              draft discarded




















































                              Thanks for contributing an answer to Stack Overflow!


                              • Please be sure to answer the question. Provide details and share your research!

                              But avoid



                              • Asking for help, clarification, or responding to other answers.

                              • Making statements based on opinion; back them up with references or personal experience.


                              To learn more, see our tips on writing great answers.





                              Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


                              Please pay close attention to the following guidance:


                              • Please be sure to answer the question. Provide details and share your research!

                              But avoid



                              • Asking for help, clarification, or responding to other answers.

                              • Making statements based on opinion; back them up with references or personal experience.


                              To learn more, see our tips on writing great answers.




                              draft saved


                              draft discarded














                              StackExchange.ready(
                              function () {
                              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f11678439%2funable-to-apply-css-to-table-cell%23new-answer', 'question_page');
                              }
                              );

                              Post as a guest















                              Required, but never shown





















































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown

































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown







                              Popular posts from this blog

                              Mossoró

                              Error while reading .h5 file using the rhdf5 package in R

                              Pushsharp Apns notification error: 'InvalidToken'