居中并水平对齐图像

时间:2014-08-08 04:42:22

标签: html css twitter-bootstrap

表单很好我试图让我的社交媒体图标看起来像这张图片:http://gyazo.com/1b9f9eee3c4896b73b6117638218afc5居中,但彼此相邻。 enter image description here

http://www.bootply.com/NrHvR4fg8u这是我的表单代码。

任何输入都将不胜感激

1 个答案:

答案 0 :(得分:2)

您可以将父div设置为text-align:center;然后将每个社交图标显示为内联块。

#socialSignIn {
  text-align:center;
}

#socialSignIn #googleLogin, #socialSignIn #facebookLogin {
  margin-right: 5px;
  display: inline-block;
}