2 “style” inline css img tags?

前端 未结 4 926
一个人的身影
一个人的身影 2021-01-01 02:42

I have the following tag

\"25\"/

        
4条回答
  •  伪装坚强ぢ
    2021-01-01 02:58

    You don't need 2 style attributes - just use one:

    25
    

    Consider, however, using a CSS class instead:

    CSS:

    .100pxSquare
    {
      width: 100px;
      height: 100px;
    }
    

    HTML:

    25
    

提交回复
热议问题