IE的兼容性和非兼容性关于全角数字的区别。
IE的非兼容性“white-space: normal”属性对于全角数字不换行。IE的兼容性“white-space: normal”属性对于全角数字换行。
跪求原因,如果想要在IE的兼容性下对于全角数字换行,该怎么整。
测试代码如下:
<!DOCTYPE html>
<html>
<head>
<style>
p.test
{
width:1px;
white-space: normal;
}
</style>
</head>
<body>
<p class="test">
<span>31asd24</span>
</p>
</body>
</html>
我想要这样的输出效果
3
1
asd
2
4
应该怎么办,跪求大神。。。。