HTML ID with numerical value not recognized by CSS

后端 未结 4 549
迷失自我
迷失自我 2021-01-21 12:20

Here is the div:

I got 9 of them with different positions on page so in the .css file I d

4条回答
  •  轮回少年
    2021-01-21 12:38

    Please try this:

    You can call either by class or ID.

    div.something {
    code...
    }
    

    or

    div#1 {
    code...
    }
    

提交回复
热议问题