What are valid attributes for the DIV element in HTML?

前端 未结 4 1188
悲哀的现实
悲哀的现实 2020-12-31 05:49

What are all the valid DIV attributes?

Based on this link, it appears only class, id, title. Is that correct? Mea

4条回答
  •  遥遥无期
    2020-12-31 06:21

    A list of attributes is available here: https://www.w3schools.com/tags/tag_div.asp

    • class
    • dir
    • id
    • lang
    • style
    • title
    • xml:lang

    Plus all the event attributes:

    • onclick
    • ondblclick
    • onmousedown
    • onmousemove
    • onmouseout
    • onmouseover
    • onmouseup
    • onkeydown
    • onkeypress
    • onkeyup

提交回复
热议问题