1

我正在尝试创建一个包含 2 个表数据和 2 个表头的表。在研究了html代码之后,我意识到将单词向左移动的方法Text-Align="Left"如下所示。不幸的是,它没有用。我没有使用任何 CSS,而只是使用普通的 html 代码。

这是我的代码:

<table style="width: 100%;">
    <tr>
        <th style="width: 189px; height: 23px;">Full Name:</th>
        <td style="width: 1910px; height: 23px;">
            <asp:Label ID="lblFullName" runat="server" Text="" Text-Align="Left"></asp:Label>
        </td>
        <th style="width: 21px; height: 23px;">Contact:</th>
        <td style="width: 684px; height: 23px">
            <asp:Label ID="lblContact" runat="server" Text=""></asp:Label>
        </td>
    </tr>
</table>
4

2 回答 2

2

<asp:Label />将生成一个<span>HTML 标记,它是inline,并且它是未定义的text-align,否则,集合:text-aligntd

<td style="width: 1910px; height: 23px; text-align: center;">
    <asp:Label ID="lblFullName" runat="server" Text=""></asp:Label>
</td>

或者让你<asp:Label />作为一个block元素:

<asp:Label ID="lblFullName" runat="server" Text=""
    style="display: block; text-align: center;"
></asp:Label>
于 2013-05-20T08:04:12.590 回答
1

尝试这个...

<table style="width: 100%;">
    <tr>
        <td style="width: 189px; height: 23px;">Full Name:</td>
        <td style="width: 1910px; height: 23px;">
            <asp:Label ID="lblFullName" runat="server" Text="" Text-Align="Left"></asp:Label>
        </td>
    </tr>
    <tr>
        <td style="width: 21px; height: 23px;">Contact:</td>
        <td style="width: 684px; height: 23px">
            <asp:Label ID="lblContact" runat="server" Text=""></asp:Label>
        </td>
</tr>
</table>
于 2013-05-20T08:02:02.357 回答