gpt4 book ai didi

javascript - braintree dropin 额外的高度

转载 作者:可可西里 更新时间:2023-11-01 02:46:10 24 4
gpt4 key购买 nike

我正在使用 braintree dropin UI:

<div id="braintree-dropin"></div>
var braintree_client_token = "{{ braintree_client_token }}";

function braintreeSetup() {
// Here you tell Braintree to add the drop-in to your division above
braintree.setup(braintree_client_token, "dropin", {
container: "braintree-dropin"
, onError: function (obj) {
// Errors will be added to the html code
$('[type=submit]').prop('disabled', false);
$('.braintree-notifications').html('<p class="alert alert-danger">' + obj.message + '</p>');
}
});
}

braintreeSetup();

生成的 dropin 有很多不必要的高度:

enter image description here我该如何去调试这个以及什么可能导致这样的事情?我已经在生产环境和实时环境中进行了测试,同样的问题仍然存在。

编辑:

您可以在此处查找和检查: http://floarplans.com/order/

最佳答案

因为你的 theme.css 2480 行有如下规则:

iframe {
width: 100%;
min-height: 350px;
border: none;
}

如果您在 head 标签的末尾包含以下 css。

<head>
<!-- Lots of meta and link tags. -->
<style>
iframe#braintree-dropin-frame {
min-height: initial;
}
</style>
</head>

这应该会将其重置为正常。因为在 css 中,最新的和更具体的规则会覆盖其他规则。

关于javascript - braintree dropin 额外的高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57043447/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com