• 26-04-2009, 10:07:11
    #1
    yaptığım tasarımda The W3C Markup Validation Service da aşağıdaki hataları alıorum bu 2 hata ne demek arkadaslar çözemedim hatanın giderilmesinde yardımcı olabilecek biri varsa sevinirim

    <html xmlns="http://www.w3.org/1999/xhtml">

    You have used the attribute named above in your document, but the document type you are using does not support that attribute for this element. This error is often caused by incorrect use of the "Strict" document type with a document that uses frames (e.g. you must use the "Transitional" document type to get the "target" attribute), or by using vendor proprietary extensions such as "marginheight" (this is usually fixed by using CSS to achieve the desired effect instead).

    This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.


    ve


    The sequence <FOO /> can be interpreted in at least two different ways, depending on the DOCTYPE of the document. For HTML 4.01 Strict, the '/' terminates the tag <FOO (with an implied '>'). However, since many browsers don't interpret it this way, even in the presence of an HTML 4.01 Strict DOCTYPE, it is best to avoid it completely in pure HTML documents and reserve its use solely for those written in XHTML.
  • 26-04-2009, 14:23:29
    #2
    kullandığın doctype, bu attribute u desteklemiyomuş. strict kullanmışsın, Transitional kullanman gerekiyomuş. misal şunu dene:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

    veya html 4.01 ise
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">

    kullan...
  • 26-04-2009, 20:37:45
    #3
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> bunu yaptımda 190 'a çıktı hata

    bu şu anda mevcut olan
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">

    tasarımda CCS ' kullandım bunlada alakası yok sanırım
  • 27-04-2009, 01:41:39
    #4
    anka81 arkadaşım sorunların birçoğunun giderilmesi konusunda yardımcı oldu yardımlarından dolayı tşk ederim
  • 27-04-2009, 01:44:21
    #5
    rica ederim, sonra da bakabiliriz kısımları için tekrar yazabilirsin, orası da basit.