Jump to content

table formatting


Guest Jennifer Good

Recommended Posts

Can explain your problem more? ALso I would advise to not use the font tag. But learn CSS to style how your text on your page looks like, eg:
[code]<span style="font-size: 12px;">This text size is 12px</span>[/code]
Or you can use this HTML and add it before the closing head (< /head>) tag:
[code]<style type="text/css">body {
    font-size: 12px;
}
</style>[/code]
That will then format all the text to 12px. However you can still add in more CSS styles to format how your font looks like in a different html tag, such as the table tag with this:
[code]table {
    font-size: 16px;
    font-family: Verdan, Arial, Helvetica;
}[/code]
That will then style any text in a table to 16px in size and use Verdana as the font. If you want to learn how to use CSS got to [url=http://www.w3schools.com/css/css_intro.asp]w3schools.com[/url].
Link to comment
https://forums.phpfreaks.com/topic/13458-table-formatting/#findComment-52090
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.