CSSソース【1】
p {
font-size: 100%;
line-height: 1.4em;
}
p strong {
font-size: 2.5em;
}
CSSソース【2】
p {
font-size: 100%;
line-height: 1.4;
}
p strong {
font-size: 2.5em;
}

トップページ > サンプルダウンロード > 法則37 インラインボックスの高さの値には単位を指定しない
p {
font-size: 100%;
line-height: 1.4em;
}
p strong {
font-size: 2.5em;
}
p {
font-size: 100%;
line-height: 1.4;
}
p strong {
font-size: 2.5em;
}