Tagged Questions

31
votes
7answers
32k views

100% Min Height CSS layout

What's the best way to make an element of 100% minimum height across a wide range of browsers ? In particular if you have a layout with a header and footer of fixed height how do you make the middle ...
9
votes
7answers
218 views

Why is using DIVs or spans tags “better” than using a table layout? [closed]

Possible Duplicate: Why not use tables for layout in HTML? Why is using markup with divs defining everything (container, header, content, etc) BETTER than using tables? I understand that ...
3
votes
1answer
111 views

How to make jQuery Mobile attributes XHTML-valid

I started using jQuery Mobile some time ago, and as those that know jQuery Mobile know, it uses it's own HTML attributes to give items a predefined role. Mostly divs. Some examples: <div ...
2
votes
1answer
107 views

asp.net mvc and valid xhtml?

For some reason an html helper is outputting this html which doesnt validate. the validator tells me There is no attribute "Length" <%= Html.CheckBox("Medicamentos", Model.Medicamentos) ...
1
vote
2answers
105 views

Correct way to leave empty elements in xhtml?

I've been experimenting with xhtml and now I'm wondering that is there a valid/correct way to add empty elements. Short question, but here's the two ways I've been using: <div> </div> ...