gpt4 book ai didi

javascript - 集中具有 onclick 元素的嵌套 Div

转载 作者:行者123 更新时间:2023-11-28 08:28:11 25 4
gpt4 key购买 nike

我有 2 行,一行需要两张图片,另一行需要在点击这些图片时显示信息。

我在将图像和文本集中在行 div 中时遇到问题。

    <div id="container">
<!-- Image row -->
<div class="row">
<div class="col-md-6">
<div id="badbutton"><a href="#" onclick="showHide('bad')"></a></div>
</div>
<div class="col-md-6">
<div id="goodbutton"><a href="#" onclick="showHide('good')"></a></div>
</div>
</div>

<!-- Text Row -->

<div class="row">
<div class="col-md-6">
<div id="bad" style="display:none;">
<p>Oh no! We'd appreciate it if you'd share your experience with us so we can improve in the future. Just click below to get started.</p>
<p> FORM HERE </p>
</div>
</div>
<div class="col-md-6">
<div id="good" style="display:none;">
<p>Fantastic! Please share your experience with the world on of these popular websites. Just make a selection below to get started.</p>
<ol>
<li>Click here to review us on Google+ Reviews</li>
<li>Click here to review us on Facebook</li>
</ol>
</div>
</div>
</div>
</div>

发生的事情是 col-md-6 占据了行 div 的 45%,但里面的按钮并没有集中起来。

这是 CSS:

.row {
margin: 0 auto;
}
.col-md-6 {
position: relative;
min-height: 1px;
padding-right: 15px;
padding-left: 15px;
}
.col-md-6 {
width: 45%;
}
#good,
#bad {
width: 50%;
}

结果如下:

enter image description here

最佳答案

尝试使用 display:table-* 它会让你的元素表现得像一个表格。

.row {
margin: 0 auto;
display: table-row;
}

.col-md-6 {
position: relative;
min-height: 1px;
padding-right: 15px;
padding-left: 15px;

display: table-cell;
text-align: center;
vertical-align: middle;
}

关于javascript - 集中具有 onclick 元素的嵌套 Div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28430876/

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