3

理由はわかりませんが、padding-left:130pxを使用しないと、アイコンをページの中央に配置できません。

もちろん、ブラウザウィンドウのサイズを変更するとアイコンが適切に中央に配置されないため、これは理想的ではありません。もっとコーヒーが必要かもしれませんが、今朝はスタッカーの助けを借りることができます!

http://towerdive.net/

HTML

<div id="center2">
    <div id="social_icons">
        <p>
            Thanks for your interest in our blog!
            You can also find us here, as well as subscribe to our newsletter:
        </p>
        <ul>
            <li id="facebook">
                <a href="https://www.facebook.com/pages/Towerdive/497721103607131" title="Like us on Facebook"><img src="img/icon_facebook.png" alt="Facebook"/></a>
            </li>
            <li id="twitter">
                <a href="https://twitter.com/TowerDiveDotNet" title="Follow us on Twitter"><img src="img/icon_twitter.png" alt="Twitter"/></a>
            </li>
            <li id="newsletter">
                <a href="http://eepurl.com/uY5m9" title="Subscribe to our Newsletter"><img src="img/icon_newsletter.png" alt="Newsletter"/></a>
            </li>
        </ul>
    </div>
</div>

CSS

#center2 {
    width: 100%;
}

#social_icons {
    margin: 0 auto;
    width: 400px;
    height: 250px;
    text-align: center;
}

#social_icons p {
    color: #e3cda4;
}

#social_icons ul {
    margin: 0 auto;
    list-style: none;
    text-align: center;
}

#social_icons ul li {
    float: left;
    padding-right: 10px;
}

完全なHTMLまたはCSSが必要な場合はお知らせください。

4

2 に答える 2

2

これにはdisplay:inline-blockを使用できます。このように書く:

#social_icons ul li {
    display: inline-block;
    *display:inline;/* For IE7*/
    *zoom:1;/* For IE7*/
    vertical-align:top;
    padding-right: 10px;
}
于 2013-02-05T17:07:52.037 に答える
0

現在、フロートを使用してナビゲーションリストを水平に表示しています。フロートが原因で、順序付けされていないリストの中央にリストアイテムを配置することはできません。

float: left;別の手法は、を使用する代わりですdisplay: inline-block;。リストアイテムは水平方向に表示されますが、余分な空白もすべて考慮されます。アイテム間に余分なマージンがあります(4pxなど)。text-align: center;これで、ULでリストアイテムを中央に配置できます。

クリス・コイエによるこの記事で説明されているいくつかの(簡単な)トレーニングがあります:http: //css-tricks.com/fighting-the-space-between-inline-block-elements/

于 2013-02-05T17:14:12.730 に答える