5
votes
How should I organize the contents of my CSS file(s)?
Have a look at these three slideshare presentations to start:
Beautiful Maintainable CSS …
1
vote
Apply margins to all but iframe
Having read your clarification, I don't think you can do that purely with CSS. I'm pretty sure CSS can …
2
votes
Hide something with CSS without display:none or JavaScript
What makes you think display: none is not supported before version 4.6? Did you test that, or are you going by their documentation?
I'm not a mobile developer either, so I'm ju …
0
votes
How Do I Import CSS With Safari and Opera When Using CSS Hacks?
The @import wasn't working because @import can't go inside an @media rule. @import …
2
votes
Any way to synchronize table column widths with HTML + CSS?
If you're not too picky about which column widths the browser comes up with, as long as they're the same across different tables, you can use the CSS …
0
votes
IE6 bug. Div’s height increases when a:hover is triggered
I've had that happen to me as well, but I can't remember where that was exactly. I think I did solve it, but I'm not entirely sure how anymore. I can think of two things:
Give the …
1
vote
How can I fix a table row height in a 100% height table with a DOCTYPE specified using CSS?
There's an easy way to fix this, especially if the page just contains this table, and you just want it to work. I'm not sure if ASP.NET will let you though: Add a comment in front of the doctype. E …
0
votes
Is there a CSS parser for C#?
And a slightly slower search turns up this one:
http://blog.dynamicprogrammer.com/2008/01/20/CSSParser …
1
vote
Form Styling with SPAN text instead of input or select controls
I'm guessing you need to add display: block to the input field replacement spans.
…
2
votes
CSS spacing issues with Safari?
You seem to have made some adjustments already, based on the state of that site you linked to, but it's still not working properly across different browsers.
I think your best bet is to set …
0
votes
Eliminate gap between lines of text
Use relative units to set the padding.
Adding padding: 0.2ex 0; background: red; using Firebug/Dragonfly to the example link in the question works just fine for me, whatever th …
2
votes
Internet explorer and floats: please explain
The floats are being bumped to the next line because of the width: 270px on the rows. That happens in IE6/7 because of its …
1
vote
How to make a div 100% of page (not screen) height?
If you change position: absolute to position: fixed it will work in all browsers except IE6. This fixes the div to the viewport, so it doesn't move out of view when scroll …
12
votes
Difference between @import and link in CSS
In theory, the only difference between them is that @import is the CSS mechanism to include a style sheet and <link> the HTML mechanism. However, browsers handle the …
0
votes
Overflowing HTML line text before it gets obscured by right aligned content
The easiest way to be able to let those icons affect the width of the text is to have them precede it (they're absolutely positioned anyway), and to give text itself a container as well (I'm pretty …
