html – 不服从`width`或`max-width`属性?

前端之家收集整理的这篇文章主要介绍了html – 不服从`width`或`max-width`属性?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个表,显示有关事件的时间跨度的一些信息,并且该特定信息位于嵌套表中.

这是一个截图:

这是< td>包含嵌套表(请注意RANOR LOGIC):

<td>
    <table class="centered" style="width: 100%; table-layout: fixed; white-space: nowrap;">
        <tbody>
            <tr>
                <td class="left-text" style="max-width: 81px; width: 81px;"><b>All Day?</b></td>
                <td id="AllDay-@item.ExternalID" style="width: 160px;">@(item.AllDay.HasValue && item.AllDay.Value == true ? "Yes" : "No")</td>
            </tr>
            @*Should display StartTime & EndTime if AllDay == true??*@
            <tr id="StartTime-@item.ExternalID" style="display: @(item.AllDay.HasValue && item.AllDay.Value == true ? "none" : "block")">
                <td class="left-text" style="max-width: 81px; width: 81px;"><b>Start Time</b></td>
                <td id="StartTime-@item.ExternalID" style="width: 160px;">@item.StartTime</td>
            </tr>
            <tr id="EndTime-@item.ExternalID" style="display: @(item.AllDay.HasValue && item.AllDay.Value == true ? "none" : "block")">
                <td class="left-text" style="max-width: 81px; width: 81px;"><b>End Time</b></td>
                <td id="EndTime-@item.ExternalID" style="width: 160px;">@item.EndTime</td>
            </tr>
        </tbody>
    </table>
</td>

在嵌套表上,我有以下样式:

style="width: 100%; table-layout: fixed; white-space: nowrap;"

在每个左手单元格(即“全天?”,“开始时间”,“结束时间”)上,我有以下样式:

style="max-width: 81px; width: 81px;"

如果不是很明显,嵌套表的单元格都没有遵循我的风格.这有点令人沮丧,因为我甚至不知道桌子会变成如此荒谬的混乱.

如何强制嵌套表中的所有表数据单元格正确对齐?

解决方法

你需要使用display:table-row;而不是显示:块;在你的< tr>标签.

或者,您可以使用display:none切换类;而不是切换显示值.

原文链接:https://www.f2er.com/html/226957.html

猜你在找的HTML相关文章