| View previous topic :: View next topic |
| Author |
Message |
froomzer
Joined: 23 May 2006 Posts: 148
|
Thanks again.
Can I combine class and style in a <b>?
The style has to adjust properties of the b.classname property.
I can only make it work for 'classname' and not 'b.classname'
Selectutorial doesn't say anything about it as far as I can see... I have to do it in the <b>, and not the stylesheet.css
Cause it's in a php-function |
| |
|
|
|
|
Poolkop
Joined: 01 Jun 2006 Posts: 123
|
| What difference does that make? |
| |
|
|
froomzer
Joined: 23 May 2006 Posts: 148
|
Cause I use inline php to change the property according to a _GET variable
Like this (for example) : <b class="box2" <?php if ($lang == "en") { echo "style=\"background:#FF0000;\""; } ?> >
Hm. I'm stuck with this. |
| |
|
|
Poolkop
Joined: 01 Jun 2006 Posts: 123
|
Why can't you add another class?
Or manipulate the class name
B class="box2 lang"> for example |
| |
|
|
froomzer
Joined: 23 May 2006 Posts: 148
|
| Will lang overwrite existing properties of box2 then? |
| |
|
|
Poolkop
Joined: 01 Jun 2006 Posts: 123
|
| It could |
| |
|
|
froomzer
Joined: 23 May 2006 Posts: 148
|
| If background is defined in box2 and in lang, and it's invoked with b class="box2 lang", will lang be dominant? |
| |
|
|
Poolkop
Joined: 01 Jun 2006 Posts: 123
|
B.box2 { /* defaults */ } b.lang { /* subsequent, therefore, overwrites equal or lower specificity elements */ }
Depends on your css |
| |
|
|
froomzer
Joined: 23 May 2006 Posts: 148
|
| Great |
| |
|
|
Poolkop
Joined: 01 Jun 2006 Posts: 123
|
| This would give you lots of flexibility if you actually used the value of lang as your class too |
| |
|
|
|