0

我在 CHROME & SAFARI 中制作了一个表格,它没有填满父 div 的整个宽度。

这在 Firefox 中工作正常,但我想在所有浏览器中工作。

在这里查看了一些视图后,我发现在某些 chrome 案例中可以通过将父 div 设置为来修复...

display: block; width: 100%;

..但问题仍然存在。

还发现了另外几个没有指定边距和填充的情况,因此试了一下,但在 Chrome 和 Safari 中显示仍然存在问题。

HTML

<div class='player_box info_pic_2'> 
    <div style='display: block; width: 100%;'>
        <table style='margin: 0; padding: 0; width: 100%; border-style: solid; border-width: 1px; position: absolute; left: 0; top: 0; right: 0px; height: 30px;'>
                <tr class='border_bottom'>
                    <td>CELL A</td>
                    <td>CELL B</td>
                </tr>
        </table>
        <table style='margin: 0; padding: 0; width: 100%; border-style: solid; border-width: 1px; position: absolute; left: 0; right: 0px; top: 30px;'>
            <tr class='border_bottom'>
                <td>ROW A </td>
            </tr>
            <tr class='border_bottom'>
                <td>ROW B </td>
            </tr>
            <tr class='border_bottom'>
                <td>ROW C </td>
            </tr>
            <tr class='border_bottom'>
                <td>ROW D </td>
            </tr>
            <tr class='border_bottom'>
                <td>ROW E </td>
            </tr>
            <tr class='border_bottom'>
                <td>ROW F </td>
            </tr>
        </table>
    </div>
</div>

CSS

tr.border_bottom td {
    border-bottom:1pt solid black;
}
.info_pic_2 {
    position: absolute;;
    height: 250px;
    top: 130px;
    right: 70px;
    width: 350px;
    max-width: 100%;
    display: block;
    border-style:solid;
    border-width:5px;
    color: black;
}
.player_box {
    border:solid 4px #000000;
    -moz-border-radius-topleft: 33px;
    -moz-border-radius-topright:32px;
    -moz-border-radius-bottomleft:32px;
    -moz-border-radius-bottomright:32px;
    -webkit-border-top-left-radius:33px;
    -webkit-border-top-right-radius:32px;
    -webkit-border-bottom-left-radius:32px;
    -webkit-border-bottom-right-radius:32px;
    border-top-left-radius:33px;
    border-top-right-radius:32px;
    border-bottom-left-radius:32px;
    border-bottom-right-radius:32px;
    text-align:center; background:#575757;
    padding:100px 50px 100px 50px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    opacity: 0.8;
}
4

2 回答 2

1

您的问题似乎是选择器中的padding.player_box(CSS 的倒数第二行。删除填充,它将正确填充。

于 2013-05-31T23:14:37.710 回答
0

我可以通过改变这个 CSS 让它表现得更好:

.info_pic_2 {
    position: absolute;
    height: 250px;
    top: 130px;
    right: 70px;
    width: 350px;
    max-width: 100%;
    display: block;
    border-style: solid;
    border-width: 5px;
    color: black;
}

至:

.info_pic_2 {
    height: 250px;
    top: 130px;
    right: 70px;
    max-width: 100%;
    display: block;
    border-style: solid;
    border-width: 5px;
    color: black;
}

我发现混合绝对定位和百分比宽度是一场噩梦。

编辑:填充也无济于事,但请在此处查看我的更新版本:

http://jsfiddle.net/rcQmW/2/

于 2013-05-31T23:14:19.170 回答