Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have

<table id="exclude1"><tr><td id="exclude2" height="100%" width="100%">

    <div>123</div><table>......</table> etc

</td></tr></table>

and CSS style

<style>
#exclude1, #exclude2 {border:0; background:transparent; width:100%; height:100%; margin:auto; padding:0; float:none; position:relative;}
* {border:1px solid red; background:red; width:100px; etc.....}
</style>

The problem is, when I set 'display:block' or 'display:inline' for '*' selector is css, then this style also applies to excluded selectors. When I set 'display:block' or 'table', or 'table-cell' or whatever for the 'exclude' selectors, these two elements become different (alignment, size etc are ruined).

What can I do, to make #exclude1 and #exclude2 untouched by '*' selector styles?


UPD:

I've separated #exclude1, #exclude2 as:

#exclude1 {border:0; background:transparent; width:100%; height:100%; margin:auto; padding:0; float:none; position:relative; display:table;}
#exclude2 {border:0; background:transparent; width:100%; height:100%; margin:auto; padding:0; float:none; position:relative; display:table-cell; vertical-align:middle;}

and seems like all works fine at least for now. Thanx.

share|improve this question
1  
Why are you applying those properties to everything? Why must everything be a red box? – BoltClock Jan 6 at 20:06
#exclude1 should be display:table and #exclude2 should be display:table-cell – Wesley Murch Jan 6 at 20:15
@BoltClock: that just an example. Simplified. – E L Jan 6 at 22:43
@Wesley Murch: after that they loose vertical alignment (even with 'vertical-align:middle' enabled). – E L Jan 6 at 22:43

1 Answer

up vote 1 down vote accepted

Put * before #Exclude1, #Exclude2. Thats how CSS works, they're Cascading Style Sheets.

And, if all else fails, throw a !important after your property like this:

  • border: none !important;
share|improve this answer
There is a lot of easy to understand information about how CSS works in slideshow form on this page, slideshare.net/webdevninja/how-css-works – Zack T. Jan 7 at 17:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.