我正在尝试确定Bootstrap表单的宽度,但是得到不合逻辑的结果。
JS - EDITED
function centerReCaptcha() {
var sw = ($("form").width() - 232) / 2;
console.log($("form").prop("id") + ", form-width=" + $("form").width() + ", screen-width=" + screen.width);
$("#recaptcha-elements").parent().css("margin-left", sw);
}
注意:screen.width = $(document).width()
的console.log:
form-writers,form-width = 934,screen-width = 1251
CSS 以前工作过但停止了工作?
#recaptcha-elements, .g-recaptcha {
display: inline;
}
#recaptcha-elements{
max-width: 100%;
}
.g-recaptcha>div>div{
width: 100% !important;
height: 78px;
transform:scale(0.77);
-webkit-transform:scale(0.77);
transform-origin:0 0;
-webkit-transform-origin:0 0;
text-align: center;
position: relative;
}
屏幕截图:
表格的宽度(英寸)为7"屏幕是12.5"。 在我看来,表格宽度应该比700更像700.我错过了什么?有没有办法使用bootstrap来确定表单的宽度?