在javascript中规范化样式属性



在IE11中,当我们block.getAttribute('style')时,我们返回

border-bottom-width: 1pt; border-bottom-style: dotted; border-bottom-color: rgb(10, 49, 132)

但在chrome中,它返回border-bottom: 1pt dotted rgb(10, 49, 132)

如何让IE11返回与chrome相同的版本?

我想这是在IE11 中吗

block.style.border-button

因为这只是信息";"边框按钮";

两种浏览器的页面元素默认样式不同。从Chrome使用此默认设置:https://gist.github.com/ambidexterich/34828a904dd97dd2a345

相关内容

  • 没有找到相关文章

最新更新