0

我有以下 HTML:

<!DOCTYPE html>
<HTML>
    <HEAD>
        <style type="text/css">
            .name {
                font-size: 18px;
                margin-top: 1px;
                text-align: right;
            }

            .contactInfo {
                font-size: 12px;
                margin-top: 1px;
                text-align: left;
            }
        </style>
        <TITLE>Joe Sixpack</TITLE>
    </HEAD>
    <BODY>
        <div id="name">
            <span class="name">Joe Sixpack</span>
        </div>

        <div id="contactInfo">
            <span class="contactInfo">
                123 Electric Ave, Mudflap, NS 12345 &#8226; (888) 555-1212 &#8226; <A HREF="mailto:Joe@Sixpack.com">Joe@Sixpack.com</A>
            </span>
        </div>

        <HR>
    </BODY>
</HTML>

问题是我希望名称类与右侧对齐,但它没有发生。名字和地址都在左边。为什么会这样,我该如何解决?

4

2 回答 2

3

在名称 div 上设置样式,而不是名称跨度:

#name {
    font-size:18px;
    margin-top:1px;
    text-align:right;
}

此外,您可能不希望 div 和 span 具有相同的名称。

于 2013-03-06T21:09:13.047 回答
1

您只能在块级元素内对齐文本。将你的 CSS 重写为:

#name {
     font-size:18px;
     margin-top:1px;
     text-align:right;
}

#contactInfo {
     font-size:12px;
     margin-top:1px;
     text-align:left;
}
于 2013-03-06T21:07:39.627 回答