HTML5 tags not working at all in firefox 3.6.3

前端 未结 3 905
别跟我提以往
别跟我提以往 2020-12-31 01:17

Okay, so I\'m trying to get into this whole HTML 5 thing, and this tutorial (http://www.webreference.com/authoring/languages/html/HTML5/) says that these tags should move t

3条回答
  •  不思量自难忘°
    2020-12-31 02:08

    Firefox 3.6 doesn't support HTML 5 sectioning elements yet. You will have to manually style the tags to be block level:

    article, aside, canvas, details,
    figcaption, figure, footer, header,
    hgroup, nav, section, summary, video {
        display: block;
    }
    

    You won't need the HTML shim, however; that's just for IE.

提交回复
热议问题