View Full Version : Code for fixed line break size?
tired&lonely
08-24-2002, 09:49 AM
What is the code for line breaks (<br>) of a "fixed" size, such that if a browser's font size is increased/decreased from the top menu bar, the line breaks will still stay the same size?
In other words, if <style>.fixedfont5{font-size:##px}</style> sets a fixed font size, what would be the equivalent for a fixed line break size?
Graeme Hackston
08-24-2002, 05:05 PM
I think this will do it:
.fixedfont5 {
font-size:##px;
line-height:##px;
}
If so, maybe a Mod should move this thread?
COBOLdinosaur
08-24-2002, 06:52 PM
<style>
br {font-size:50%}
</style>
COBOLdinosaur
08-24-2002, 06:54 PM
Or just apply it to the br tag directly with:
<br class="fixedfont5">
tired&lonely
08-24-2002, 10:48 PM
Thanks so much COBOLdinosaur and Graeme Hackston. I really really appreciate your expert assistance!!! I just discovered this form and you guys make it a real pleasure. By the way, <br class="fixedfont"> was the perfect fix.
vBulletin® v3.8.2, Copyright ©2000-2012, Jelsoft Enterprises Ltd.