Html Chrome文本问题:某些文本显示在midex中

Html Chrome文本问题:某些文本显示在midex中,html,css,asp.net-mvc,google-chrome,text,Html,Css,Asp.net Mvc,Google Chrome,Text,我在chrome浏览器中遇到文本问题。 一些文本显示混合 代码中的一个简短示例 有些表格设计不好,但有些文本显示不好。请提供一个“可复制”的示例-目前我只能猜测您在某个地方使用了position:absolute不好。页面上没有其他代码。。。我没有这个问题的所有时间,有这个问题后,一些刷新只铬浏览器。铬版本:40.0.2214.94 Css : table.responsive { margin-bottom: 0; } .pinned { position: absolute; le

我在chrome浏览器中遇到文本问题。 一些文本显示混合

代码中的一个简短示例


有些表格设计不好,但有些文本显示不好。

请提供一个“可复制”的示例-目前我只能猜测您在某个地方使用了position:absolute不好。页面上没有其他代码。。。我没有这个问题的所有时间,有这个问题后,一些刷新只铬浏览器。铬版本:40.0.2214.94
Css :
table.responsive { margin-bottom: 0; }

.pinned {
    position: absolute; left: 0; top: 0; background: #fff; width: 35%; overflow: hidden;
    overflow-x: scroll; border-right: 1px solid #ccc; border-left: 1px solid #ccc; }
.pinned table { border-right: none; border-left: none; width: 100%; }
.pinned table th, .pinned table td { white-space: nowrap; }
.pinned td:last-child { border-bottom: 0; }

div.table-wrapper { position: relative; margin-bottom: 20px; overflow: hidden; border-right: 1px solid #ccc; }
div.table-wrapper div.scrollable table { margin-left: 35%; }
div.table-wrapper div.scrollable { overflow: scroll; overflow-y: hidden; }  

@media screen and (max-width: 960px) {

    table.responsive td, table.responsive th { position: relative; white-space: nowrap; overflow: hidden; }
    table.responsive th:first-child, table.responsive td:first-child,
    table.responsive td:first-child, table.responsive.pinned td { display: none; }

}

  <table class="table responsive">
        <tr>
            <td>Kampanya Adı:</td>
            <td>@Model.Ad</td>
        </tr>
        <tr>
            <td><label>Kampanya Açıklaması :</label></td>
            <td>
                <div class="word-breaktxt">@Model.Aciklama</div>
            </td>
        </tr>
</table>