表宽度问题,html css

时间:2013-05-31 22:59:17

标签: html css html-table

我已经制作了一个表格,它不会填充CHROME&amp ;;中父div的整个宽度。苹果浏览器。

这在Firefox中运行良好,但我想在所有浏览器中工作。

在这里看到一些观点后,我发现在某些chrome案例中可以通过设置父div来修复...

display: block; width: 100%;

..但问题仍然存在。

还发现了另外几个没有指定保证金的情况。填充所以给了一个镜头,仍然存在Chrome和&苹果浏览器。

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;
}

2 个答案:

答案 0 :(得分:1)

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

答案 1 :(得分: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/