Jump to content

croatiankid

Members
  • Posts

    332
  • Joined

  • Last visited

About croatiankid

  • Birthday 09/15/1990

Contact Methods

  • Website URL
    http://croatiankid.com/
  • ICQ
    0

Profile Information

  • Location
    Zagreb, Croatia

croatiankid's Achievements

Member

Member (2/7)

0

Reputation

  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.
×
×
  • Create New...