![]() | |
![]() |
| | Thread Tools | Display Modes |
#1
| |||
| |||
|
|
The following code looks ok when viewing it on my Mac but when I view it on a Windows machine it looks terrible. The 'T', 'F' & 'E' are bold and dark grey on the MAC but on Windows are not, even though I am using a standard font. |
#2
| |||
| |||
|
|
.oO(7073) The following code looks ok when viewing it on my Mac but when I view it on a Windows machine it looks terrible. The 'T', 'F' & 'E' are bold and dark grey on the MAC but on Windows are not, even though I am using a standard font. Which browsers did you test? It looks OK here in all of my browsers. But why the hell are there all these nested divs inside the table cells? That's really ugly code. It can be easily reduced to pretty simple HTML, something like: tr class="foo" td><b>T:</b> 999</td td><b>F:</b> 999</td td><b>E:</b> info@.co.uk</td /tr with this CSS: body, td {font: 14px Verdana, Arial, Helvetica, sans-serif} .foo td { width: 250px; height: 50px; font-weight: bold; text-align: center; color: #999 } .foo b {color: #333} And even the class "foo" could be removed with using a 'tfoot' element. Just an example ... Micha |
#3
| |||
| |||
|
|
Actually, you could even do this - body, td {font: 14px Verdana, Arial, Helvetica, sans-serif} .foo td { width: 250px; height: 50px; font-weight: bold; text-align: center; color: #999 } .foo td:first-letter {color: #333} |
#4
| |||
| |||
|
![]() |
| Thread Tools | |
| Display Modes | |
| |