JQuery Datatable,宽度为50%

时间:2014-07-25 17:13:41

标签: jquery css datatable

我有以下数据表从ajax获取数据,我没有找到使其宽度为50%的选项,有没有办法做到这一点?

                    <div id="masonry" class="yesPrint">
                        <table class="table table-nonfluid table-condensed table-striped table-bordered table-hover" id="sample_2">
                            <thead>
                            <tr>
                                <th class="centralize" colspan="2">1 - Ramais</th>
                            </tr>
                            <tr align="left">
                                <th>Número</th>
                                <th>Nome</th>
                            </tr>
                            </thead>
                            <tbody>
                            </tbody>
                        </table>
                        </div>

2 个答案:

答案 0 :(得分:0)

除非我错过了什么......

您想使用css样式:width: 50%;

答案 1 :(得分:0)

这是一个小提琴:http://jsfiddle.net/6KzXw/3/

尝试将其包装在容器中并在容器上设置宽度:50%,如果无法直接在表上设置它。像这样:

#masonry { width: 50%; }