Search Results

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 …
130
votes

Why not use tables for layout in HTML?

Here's my programmer's answer from a simliar thread …
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 …
0
votes

Hyperlinking an image using CSS

The HTML5 spec-in-progress allows linking for several m …
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"?> …
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 …