我有一张桌子,如:

<div class="Bar" >
        <table width="100%">
            <tr>
                <td width="20%">
                   <asp:LinkButton ID="LnkHome" runat="server" ForeColor="Black" Text="Home"></asp:LinkButton>
                </td>
                <td width="20%">
                                   </td>
                <td width="20%">
                                  </td>
                <td width="20%">
                                   </td>
                <td width="20%">

                </td>
            </tr>
        </table>
    </div>


我试图通过表上的css添加背景色为

.Bar table tr td
{
    background-color:Maroon;

    }


但不提供背景色。感谢您的协助。

最佳答案

的CSS

 .Bar table tr td
        {
            background-color: Maroon;
            height:50px;
        }


HTML

<div class="Bar">
        <table width="100%">
            <tr>
                <td width="20%">Hello
                </td>
                <td width="20%">Hello
                </td>
                <td width="20%">Hello
                </td>
                <td width="20%">Hello
                </td>
                <td width="20%">Hello
                </td>
            </tr>
        </table>
    </div>

关于asp.net - 背景色未添加,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14908658/

10-13 02:31