5

デモリンク

2 番目のリストのテキストが中央に配置されない理由がわかりません。

ここに画像の説明を入力

HTML

<div id="the_target">
    <ul>
        <li>Stephen Marston</li>
        <li>Account Exectutive</li>
        <li>The Company</li>
    </ul>
</div>

サス:

section {
    #the_requestor {
        margin-top: 40px;
        ul { margin-top: 10px; }
        ul li {
            text-align: center;
            line-height: $px20;
        }
        li:first-child {
            font-family: LatoBold;
            font-size: $px30;
            background: cyan;
        }
    }
    #the_target {
        position: relative;
        margin-top: 40px;
        ul { margin-top: 10px; }
        ul li {
            text-align: center;
            line-height: $px20;
        }
        li:first-child{
            font-family: LatoBold;
            font-size: $px30;
            background: cyan;
        }
    }
}

スティーブン・マーストンがセンターにいない理由について何か考えはありますか?

4

2 に答える 2

2

#the_target の前にフロートをクリアする必要があります

   #the_target {
            position: relative;
            margin-top: 40px;
            clear:both;
    }
于 2013-08-29T19:44:29.220 に答える