0
votes
Is there any easy way to determine what factors are contributing to the size of an HTML element?
#outer #inner1 #inner2 #inner3 {float: left; }
#outer {width: ZZZpx; }
By floating all divs, you get #outer to contain its children -- and you get all inner divs to fl …
21
votes
What’s the best way to organize CSS rules?
for a large file of css rules I would organize it in this manner
provide any reset CSS rules first
provide any general/generic rules (eg p { color: #553423; } next
d …
8
votes
Is there a business reason for striving for pure CSS layout?
Since this is stack**overflow**, I'll give you my programmer's answer
semantics 101
First take a look at this code and think about what's wrong here...
class car { …
129
votes
27
votes
What is the easiest or fastest way to make CSS render the same in all browsers
I agree with all the "reset" suggestions and the "grid" framework suggestions, but I did want to add a bit of advice: The goal of identical in every browser is, in practical terms, unachie …
11
votes
What is the best CSS grid framework?
Both Blueprint and 960gs are great, but you seem to want more flexibility in defining grid widt …
6
votes
CSS Reset, default styles for common elements
One of the rules in applying CSS styles is "last in wins." This means if your CSS reset styles set elements to margin:0; padding:0 you can then override these rules by declaring your …
1
vote
Seeking CSS Browser compatibility information for setting width using left and right
The The CSS Box model might provide insight for you, but my guess is that you're not going to achieve pixel-perfec …
0
votes
2
votes
How would you achieve this table based layout using CSS instead of HTML tables?
This markup and CSS roughly achieves your stated goals under the restrictions for this question...
The Proposal
<?xml version="1.0" encoding="UTF-8"?> …
49
votes
Is it ok to use a css reset stylesheet?
Point
Yes, absolutely use a CSS Reset if you plan to develop for cross-browser compatibility. I've used YUI …
1
vote
CSS positioning div above another div when not in that order in the HTML
Negative top margins can achieve this effect, but they would need to be customized for each page. For instance, this markup...
<div class="product">
<h2>Greatest Produc …
7
votes
Unordered lists and accessability
The best markup for your site's navigation would the HTML tag(s) that best represent what your navigation is. This is where rubber meets the road for HTML semantics.
Is your navigation a l …
3
votes
Do you know of a resource that lists all the font-families with their fall-backs that are good on the web?
I just bookmarked SitePoint's 8 Definitive Font Stacks today, and plan to incorporate these into future p …
1
vote
Looking for reference of well-built XHTML/CSS/JSP2 norms/best practices.
Regardless of the technology used to generate XHTML and CSS, I'd recommend these XHTML/CSS resources ...
A List Apart
…
