最近我在我的 wordpress 网站上添加了一个类似 FB 的按钮和一个 Twitter 关注按钮,为了垂直对齐它们,我在“user.css”模板中插入了这段代码:
.fb-like {
position: relative;
top: 50%;
transform: translateY(-50%);
}
.twitter-follow-button{
position: relative;
top: 50%;
transform: translateY(-50%);
}
现在我正在尝试插入一个 Youtube 订阅按钮(class=g-ytsubscribe),为了对齐它,我插入了后续代码
.g-ytsubscribe{
position: relative;
top: 50%;
transform: translateY(-50%);
}
虽然对于前两个按钮它正在工作,但对于 youtube 按钮它不起作用,结果是:
我怎么能修好???
谢谢你们!!!