Mansour wrote:
> I am wondering if there's a way to select an element that does not have 
> the specified attribute set?
> For example, let's say I need to format all the H1 elements except one 
> that has style attribute set. How do I do this ?
>   


Not sure I understand... but, anyway--

let's use h2 since /normally/ the document title and h1 are the same; 
consequently, there is only one title per page-- hence only one h1per page.

css:

h2 {font-size: 100%;}
h2#c1{font-size: 300%;}

html

<h2>A</h2>
<h2>B</h2>
<h2>C</h2>
<h2>D</h2>
<h2 id="c1">E</h2>
<h2>F</h2>

Is something like this what you are trying to do?

______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to