Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Below I have a table cell with 2 numbers in it. I want to write some CSS for divs to overlay some colors on top (split, 2 colors... 1/2 cell one, 1/2 cell the other). I am looking to approach this not using gradiants due to browser compatibility issues.

I tried setting the div's relative positioning and I can get the colors to line up, but it keeps increasing the size of my table cell.

Question is this, is there a better way... and also, how can I keep my table height from growing on me when placing two additional divs in the cell.

  <td id="td4" runat="server">
        <asp:HiddenField ID="item" runat="server" Value="" />
        <asp:Panel ID="panel40" runat="server" CssClass="hellworld1">
            <asp:Label ID="lbl40" runat="server"></asp:Label>
        </asp:Panel>
        <asp:Panel ID="item2" runat="server" CssClass="helloworld2">
            <asp:Label ID="lbl41" runat="server"></asp:Label>
        </asp:Panel>
        <div></div>
    </td>
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.