我想将2个社交图标完全对齐在中心。实际上,为了做到这一点,我想将80px
的宽度值设置为推特图标,但我不能这样做。我只能在浏览器编辑器中做到这一点;我似乎无法选择正确的类,element.style
无论我做什么都会覆盖它。这是什么?
element.style {
width: 110px;
height: 20px;
}
我不会包裹整个按钮来改变大小(或者我应该?)。应该工作的代码是:
.twitter-share-button { vertical-align:top;
margin-left:10px; width: 80px;}
答案 0 :(得分:35)
在Chrome的开发者工具element.style
中,显示了应用于所选元素的所有内嵌样式。
要覆盖它们,请使用!important
因此,要将按钮宽度设置为80px,您可以使用:
.twitter-share-button {
width: 80px !important;
}
答案 1 :(得分:0)
使用style属性
尝试在按钮上使用本地样式style = "width: 80px;"
本地样式应该覆盖它。