What is the difference between   and  ?

前端 未结 2 1573
孤独总比滥情好
孤独总比滥情好 2021-01-03 20:05

I have written one XSLT to transform xml to html. If input xml node contains only space then it inserts the space using following code.

&         


        
2条回答
  •  春和景丽
    2021-01-03 20:47

      is a non-breaking space ( ).

      is just the same, but in hexadecimal (in HTML entities, the x character shows that a hexadecimal number is coming). There is basically no difference, A0 and 160 are the same numbers in a different base.

    You should decide whether you really need a non-breaking space, or a simple space would suffice.

提交回复
热议问题