1
vote
IE7 HTML/CSS margin-bottom bug.
If you remove the float from the element below the table, does the margin appear?
…
10
votes
On the web, what fonts should I use to create an equivalent experience cross-platform?
Here are some good up-to-date listings of the most-installed fonts for PC, Mac, and Linux:
Sans ser …
0
votes
Can you recommend a good CSS online resource or book?
Jeffrey Zeldman's Designing with Web Standards is a great web book. It's not specifically focused on CSS; it's more …
2
votes
CSS: Getting image to stretch a div
One trick you can use is to set the <div>'s overflow property to hidden. This forces browsers to calculate the physical size of the box, and fixes the weird overlap problem with …
2
votes
What is the best CSS grid framework that integrates with Wordpress?
Some folks have created ready-made Wordpress themes using Blueprint:
http://wordpress.org/extend/themes/blueprint …
0
votes
How can I override an inline style with an external css?
Unfortunately, inline CSS is always the last style applied to an element, so the inline styles will always override external styles.
If the Gridview's generated styles are giving you fits, …
2
votes
Best Ways to Get Around CSS Backgrounds Not Printing
Two suggestions:
Color-code text in the table rows
Add color-coded icons to the beginning or end of the table rows
You could even incorporate these into the no …
0
votes
Opacity issue with css, div, and asp:Image
Try this:
.Splash .imgOpac
{
filter:alpha(opacity = 100);
-moz-opacity:1.0;
}
That should override the Splash class.
…
0
votes
Is YUI grids.css really that flexible?
Hi Simon--
If you do investigate alternatives to YUI, check out the Blueprint CSS Generator (http://kematzy.com/blueprint-ge …
