0

我有以下DIV。当这个渲染时,我注意到表格有几个像素大约 5-10 像素的填充,即使我没有指定它。我需要把桌子贴在 DIV 的顶部。我该怎么做?

<div data-role="page" id="page2" >

<div data-role="content" align="top" >  

        <table border="0" align="CENTER" cellspacing="0" width="100%" style="vertical-align: text-bottom;" >
        <tr>
        <td>
            <div id="question" class="question">
            <Style>
                #question{
                  font:10px;
                }
            </style>        
            </div>
        </td></tr><tr>
        <td style="text-align:center;">
            <div class="ui-grid-b" >
                <div class="ui-block-a"><button id="button1" type="submit" data-theme="c" style="font-size:0.8em;"></button></div>
                <div class="ui-block-b"><button id="button2" type="submit" data-theme="c" style="font-size:0.8em;"></button></div>   
                <div class="ui-block-c"><button id="button3" type="submit" data-theme="c" style="font-size:0.8em;"></button></div>  
            </div>
        </td>
        </tr>
        </table>
    <!--/div-->
</div>

</div>
4

1 回答 1

1

你可以试试这个

<div data-role="content" align="top" style="padding:0 !important">
<!-- Your table markup goes here -->
</div>

jsFiddle

于 2013-02-07T06:14:11.267 回答