首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往
您找到你想要的搜索结果了吗?
是的
没有找到

css 更改所有text,CSS之cssText「建议收藏」

div.style.width = “200px”; div.style.height = “200px”; div.style.lineHeight = “200px”; 但是一旦需要更改的样式很多的话,可以使用cssText...来设置 div.style.cssText = “width:200px;height:200px;line-height:200px”; 但是cssText会覆盖行内样式,不会覆盖 div.style.cssText...+= “width:200px;height:200px;line-height:200px”; 但是IE9以下的浏览器div.style.cssText会省略cssText中的最后一个分号 console.log...(div.style.cssText);结果为:HEIGHT: 100px; WIDTH: 100px; TEXT-ALIGN: center; LINE-HEIGHT: 100px; BACKGROUND-COLOR...: red 所以为了解决IE中的这个小问题 div.style.cssText += “;width:200px;height:200px;line-height:200px”; 大流量网站性能优化:一步一步打造一个适合自己的

46120
领券