Vertical Align Example
Simple vertical align example
by mwfire
HTML
Test<span class="copyright">©</span> Folgetext
CSS
body {
font-size: 16px;
}
.copyright {
vertical-align: top;
font-size: .8em;
}
by mwfire
Test<span class="copyright">©</span> Folgetext
body {
font-size: 16px;
}
.copyright {
vertical-align: top;
font-size: .8em;
}