Code: Select all
[size=85]Small[/size]
Code: Select all
<span style="font-size: 85%; line-height: normal">Small</span>
The problem is they're all just <span> sections hardcoded to the final HTML, I can't style them individualy. If I want the Large bbcode to be a bit bigger that affects all of the others, same happens if I try to use a specific font color for one of them.
I know I could create new bbcodes but that's not the point, we shouldn't have font bbcodes hardcoded to HTML.
So, the proposal is just having 4 CSS classes:
Code: Select all
.small-text {font-size: 85%; }
.normal-text {font-size: 100%; }
.large-text {font-size: 150%; }
.huge-text {font-size: 200%; }