0

これ(http://jsbin.com/uxayid/3/)をFirefoxでも機能させる方法は?

これは三角形のCSSです:

#c table tr td {
    height: 295px;
    width: 208px;
    background-color: white;
    border: 1px solid black;
    position: relative;
    text-align: center;
}
.tr-topright {
    border-left-width: 42px;
    border-top-width: 42px;
    border-left-color: white;
    border-left-style: solid;
    border-top-color: #BBBBBB;
    border-top-style: solid;
    box-shadow: -3px 3px 6px 0 lightGrey;
    height: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 0;
}

最初のものは期待される結果です。

クロームとFirefoxのプレビュー

4

1 に答える 1

0

追加するだけです:

display: block;
float: left;

#c table tr td

ルール

そしてそれはうまくいくはずです。

于 2012-09-05T10:12:19.783 に答える