Shared baseline with span
by robdodson
HTML
<p id="first">Hello <span>World!</span></p>
CSS
#first {
font-size: 16px;
font-weight: bold;
}
span {
font-size: 12px;
font-weight: normal;
}
by robdodson
<p id="first">Hello <span>World!</span></p>
#first {
font-size: 16px;
font-weight: bold;
}
span {
font-size: 12px;
font-weight: normal;
}