Jump to content

croatiankid

Members
  • Posts

    332
  • Joined

  • Last visited

Everything posted by croatiankid

  1. You can use it in valid XHTML transitional as well.
  2. There's also a small article about them here.
  3. XHTML 1.0 (regardless of doctype) is backwards compatible with HTML 4.01. XHTML 1.1 is not.
  4. This is only true for xhtml. Current and future versions of HTML allow a mix of upper and lower case tags see here.
  5. Not really. I'm not going to do YOUR work that YOU'RE getting paid to do for free.

  6. I've seen pages with over 4000 validation errors.
  7. be aware that in order to center a block-level element, you must give it a width (this can be frustrating at times, making you have to have a container element).
  8. You can use xhtml 1.0 (any version) or any version of html. http://www.w3.org/TR/xhtml1/#guidelines read that if you want to use with xhtml.
  9. croatiankid

    Valid?

    This is the smallest though: body{background:#006000;color:#0E0}h1{color:#0E0;text-decoration:underline;background:#006000}hr{width:65%;color:#0C0;background:#006000}h1.center{margin:0 auto;text-align:center}
  10. croatiankid

    div questions

    here's a valid and optimized version of the code above: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"><title>untitled</title><style type="text/css">* {margin:0;padding:0}#container {margin:0 auto;width:780px}#left,#right {float:left}#left {width:30%;border:1px solid #f00}#right {width:70%;border:1px solid #00f}</style><div id="container"><div id="left"></div><div id="right"></div></div>
  11. your x errr html isn't valid.you can't use text/html MIME type with xhtml 1.1.you have something like <li></a></li>yeah..
  12. The faux columns method is most used, and best suited to ease this drawback of css. read here
  13. maybe that document.write is not allowed in XHTML??
  14. what would be, besides a college degree?
  15. it's because ie7 doesn't know that it's safe. For example, same thing happens when norton is turned on, but when i turn it off, it works fine.
  16. I've got 80 gigs, 256 ram and a p4 2.6ghz and i can play almost anything I want
  17. might as well go ram instead of hd
  18. it will because it's valid css, just that ie6 (and maybe 7, not sure) ignore it.
  19. unfortunately ie has limited css support for thead (among others)
  20. you've most likely formed that opinion because of misinformation and a lack of knowledge of how it works.
  21. for now you should not put ANYTHING before a doctype (no whitespace, no blank line, no comment, no xml tag, nothing), because doing so will activate internet explorer's quirk mode of rendering, giving you unpredictable layout results across browsers.
  22. I agree that they are ugly. I think they should change their background to blue (either light or dark, but one of the blues in the header).
  23. microsoft officially dropped support for ie5 last october (http://www.microsoft.com/mac/products/internetexplorer/internetexplorer.aspx?pid=internetexplorer).
  24. http://www.sothink.com/product/swftovideoconverter/index.htm
  25. you have set it to be 100% of the body and html, but you haven't set their height. First thing you must do is put the height of them to 100%, like this:body,html{height:100%}.then when you put a div or table and set its height to 100%, it will be that high.
×
×
  • Create New...