不必要的水平滚动条

时间:2017-02-02 10:14:35

标签: html css asp.net-mvc datatables scrollbar

我正在尝试使用jquery数据表构建一个asp.net mvc视图。我的数据表只包含一个字段(角色名称)和删除/更新/显示按钮链接。 问题是显示了一个不必要的水平滚动条:

enter image description here

如何避免这种不必要的滚动条?

以下是我的观点片段:

<div class="row">
    <div class="col-lg-12">
        <h1 class="page-header"> Roles management </h1>
    </div>
    <!-- /.col-lg-12 -->
</div>
<div class="row">
    <fieldset class="col-md-10 col-md-offset-1 ">
        <legend>Liste des rôles </legend>       
            <div class="table-responsive">
                <table width="100" class="table table-bordered table-hover" id="dataTables-example">
                    <thead>
                        <tr>
                            <th>Designation role</th>
                        </tr>
                    </thead>
                    <tbody>
                        @foreach (var item in Model)
                        {
                            <tr>
                                <td>
                                    @item.Name
                                </td>
                            </tr>
                        }
                    </tbody>
                </table>
            </div>
            <div class="b-right">
                <button type="button" class="btn btn-primary" onclick="location.href='@Url.Action("Create", "Role")'">
                    <i class="fa fa-plus"></i> Ajouter un role
                </button>
            </div>      
    </fieldset>
 </div>

非常感谢你的帮助。

1 个答案:

答案 0 :(得分:0)

尝试添加此css:

overflow-x:hidden

到包裹fieldset的div。