CSS text-align属性

时间:2013-03-06 21:06:02

标签: css html5

我有以下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>

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

2 个答案:

答案 0 :(得分:3)

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

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

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

答案 1 :(得分:1)

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

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

#contactInfo {
     font-size:12px;
     margin-top:1px;
     text-align:left;
}