| View previous topic :: View next topic |
| Author |
Message |
froomzer Enthusiastic Coder
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
Reply with quote
|
| |
|
|
Poolkop Enthusiastic Coder
Joined: 01 Jun 2006 Posts: 123
| |
froomzer Enthusiastic Coder
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.
Reply with quote
|
| |
|
|
Poolkop Enthusiastic Coder
Joined: 01 Jun 2006 Posts: 123
|
Why can't you add another class?
Or manipulate the class name
B class="box2 lang"> for example
Reply with quote
|
| |
|
|
froomzer Enthusiastic Coder
Joined: 23 May 2006 Posts: 148
| |
Poolkop Enthusiastic Coder
Joined: 01 Jun 2006 Posts: 123
| |
froomzer Enthusiastic Coder
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?
Reply with quote
|
| |
|
|
Poolkop Enthusiastic Coder
Joined: 01 Jun 2006 Posts: 123
|
B.box2 { /* defaults */ } b.lang { /* subsequent, therefore, overwrites equal or lower specificity elements */ }
Depends on your css
Reply with quote
|
| |
|
|
froomzer Enthusiastic Coder
Joined: 23 May 2006 Posts: 148
| |
Poolkop Enthusiastic Coder
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
Reply with quote
|
| |
|
|
|