|
|
 |
Welcome to the p2p.wrox.com Forums.
You are currently viewing the BOOK: Beginning Web Programming with HTML, XHTML, and CSS section of the Wrox p2p Programmer to Programmer discussion community. This is a community of more than 40,000 computer programmers including Wrox book authors and readers. As a guest, you can read any forum posting. By joining our free Wrox p2p community you can post your own programming questions and respond to other programmers’ questions. Registered users also don't have to see the ads that are displayed to guests. Registration is fast, simple and absolutely free so please, join today!
Join today and post to win prizes! Post more to increase your chances of being Wrox’s top poster of the month.
|
 |

September 25th, 2004, 04:17 PM
|
|
Registered User
|
|
Join Date: Sep 2004
Location: , , USA.
Posts: 8
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Great Book!
I purchased this book the day it came out and was very excited to see a detailed book on HTML thats not over 3 years old. To date Ive read 4 diffrent books on HTML\CSS and this is the best one yet. But there was one thing I was disappointed in not seeing.
John Duckett went into good detail on the FONTS properties in CSS. But he failed to mention that diffrent computers Macs, PC, Unix have diffrent fonts and that users should pick a common font from each system that they like. While I dont own a mac and cant know for sure I have been told that fonts like Arial, Verdana, Tahoma are not standard mac system fonts.
|

October 26th, 2004, 12:44 PM
|
 |
Wrox Author
|
|
Join Date: Jun 2003
Location: Camby, IN, USA.
Posts: 1,697
Thanks: 0
Thanked 1 Time in 1 Post
|
|
Those aren't Mac fonts. A similar Mac font is Helvetica.
So you'd declare your font as:
body {
font-family: Arial, Verdana, Tahoma, Helvetica, sans-serif;
}
If you don't have access to all three platforms, then generic fonts are your best bet. Though given all the *nix variants, one *nix platform may not have the same available fonts as another. From my own experience, they've been consistent. Generic fonts are always available though (provided the browser supports them, many do).
sans-serif (Arial, Helvetica)
serif (Times, Times New Roman)
monospace (Courier, Courier New)
cursive
fantasy
http://www.w3.org/TR/CSS21/fonts.html#font-family-prop
In my own research I've found serif, sans-serif and monospace to be the most consistent.
HTH!
Regards,
Rich
--
[ http://www.smilingsouls.net]
[ http://pear.php.net/Mail_IMAP] A PHP/C-Client/PEAR solution for webmail
|
| Thread Tools |
Search this Thread |
|
|
|
| Display Modes |
Linear Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
Similar Threads
|
| Thread |
Thread Starter |
Forum |
Replies |
Last Post |
| Great book! |
Keith Smith |
BOOK: Beginning Visual C# |
0 |
November 11th, 2008 09:28 AM |
| ASP.NET 2.0 with C# - Great book! |
PorlyP |
Wrox Book Feedback |
0 |
August 6th, 2007 08:58 AM |
| Great book |
saniamirza |
BOOK: Accessible XHTML and CSS Web Sites: Problem Design Solution |
1 |
March 1st, 2007 09:57 AM |
| Great book, a little sloppy |
PatFrank |
BOOK: Beginning ASP.NET 2.0 and Databases |
0 |
September 27th, 2006 03:20 PM |
| This Book - Great Disappointment |
mhardiman |
BOOK: Professional Web Parts and Custom Controls ASP.NET ISBN: 0-7645-7860-X |
2 |
August 4th, 2006 06:41 PM |
|
 |