两列居中(Bootstrap)

时间:2016-08-12 15:44:20

标签: html twitter-bootstrap razor twitter-bootstrap-3

我有以下Razor View

DateAdd

我使用最新版本的Bootstrap。当我运行该代码时,结果并不好。 enter image description here 列和行不居中。带有标签的输入字段是块元素和类名:" text-center"没有工作;我试过" block-center"但没什么。我也尝试过抵消。如果你有一些想法,那就太好了。

1 个答案:

答案 0 :(得分:1)

我认为这部分导致了您的问题 class =“col-md-4 col-md-offset-4”

这样的事情应该可行:

private void signOut() {
        if (mGoogleApiClient.isConnected()) {
                Plus.AccountApi.clearDefaultAccount(mGoogleApiClient);
                mGoogleApiClient.disconnect();
                mGoogleApiClient.connect();

        }
}

这是this page