如何在单个<p> </p>中垂直对齐2种不同的字体大小

时间:2014-01-14 11:47:41

标签: html css

正如标题所说,我应该如何垂直对齐: -

需要: - - | - | - -

目前垂直对齐默认为基线。

目前:_ _ | _ | _ _

HTML:

<div class="moduleResult">
    <p>You have
        <span class="moduleCard">88</span>
        out of
        <span class="moduleCard">88</span>
    correct</p>
</div>

CSS:

.moduleResult{
    width:100%;
    }

p{
    font-family:'Arial';
    font-size:20px !important;
    line-height:30px;
    text-align:center;
    }

.moduleCard{
    font-size:60px !important;
    line-height:60px;
    padding:0 4px;
    }

并且文本必须在&lt;&lt; div class“moduleResult”&gt;

这是 Fiddle Link

1 个答案:

答案 0 :(得分:10)

请参阅http://jsfiddle.net/kfVGf/2/

.moduleCard{
    font-size:60px !important;
    padding:0 4px;
    display: inline-block;
    vertical-align: middle;
}

结果:

enter image description here


注意:unless you have a valid reason,请避免使用!important