> On Sat, 11 Aug 2007, Robert Tilley wrote:
>
>   
>> <style>
>> p { color: white; font-size: large; }
>> </style>
>> </head>
>>
>> <body>
>>
>> <div style="color: white; font-size: large;">
>> <p>Sample text of a large size.</p>
>> </div>
>>     

It works. Perhaps you do not see it because there is no point of reference?
Try:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd";>
<html xmlns="http://www.w3.org/1999/xhtml";>
<head>
<meta http-equiv="content-type"
content="text/html; charset=utf-8" />
<title>large</title>
<style type="text/css">
body {color: #000; background-color: #fff; }
p.c1 {font-size: large; }
</style>
</head>
<body>
<div>
<p>Sample text at user default.</p>
<p class="c1">Sample text of a large size.</p>
</div>
</body>
</html>


Best,
~dL




http://chelseacreekstudio.com/

______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7 information -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to