0

ページ上の他の多くのものも絶対位置を使用していますが、何らかの理由で、「投票」ボタンと「プロファイル」ボタンは、Internet Explorer 9/10(8-ここでは問題ではありません)。HTMLにはスタイルはありません、それはここで大丈夫です。目立つものはありますか?ありがとう!

        .contain{
        margin-left:-65px;
        margin-top:-85px;
        position:absolute;

    }
    .video_display1{
        background-color:#333;
        width:250px;
        height:200px;
        margin-top:40px;
        margin-left:88px;
    display:inline;
    }
    .profile1{
        width:49px;
        height:12px;
        margin-left:87px;
        margin-top:3px;
        position:absolute;
    }
    .vote1{
        margin-top:3px;
        margin-left:240px;
        position:absolute;
    }
    .display_vote1{
        margin-left:295px;
        margin-top:2px;
        font-size:11px;
        position:absolute;
    }

そしてここにHTMLがあります:

            <span class="contain">
                <iframe class="video_display1" width="250" height="200" src=""> </span>
                <span class="profile1"><img src=''/></span>     
                <span class="vote1"><input type="image" src=''/></span>             
                <span class="display_vote1"></span>
            </span>

そしてDOCTYPE:

 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
4

1 に答える 1

0

画像の幅と高さを定義していないため、高さと幅を固定するには、最初に定義します。そしてdisplay: inline-block;、あなた.containだけがあなたが望むものを手に入れます。

于 2013-03-18T02:21:05.710 に答える