html中label标签 type=radio 换行有空格问题

我的情况只针对IE(其他浏览器是ok的)如下图:

html中label标签 type=radio 换行有空格问题_第1张图片

解决方法:

添加/* IE7 */
  margin-top: 1px \9;
  /* IE8-9 */
  line-height: normal;

我用的是

/* IE8-9 */
  line-height: normal;

效果图如下:

html中label标签 type=radio 换行有空格问题_第2张图片

完成!

你可能感兴趣的:(html)