0
我有一個關閉按鈕的底部模式。它看起來好像是在上下移動,取決於評論部分在最上面多久。無論評論部分多長時間,我都試圖在底部修正它的位置。所以我用相對,但如果你們有更好的主意來解決這個問題,我將不勝感激。謝謝。關閉按鈕的css位置
查看:
<div class="form-horizontal">
<div class="modal-title title">
<p>@ViewBag.name<span> Info</span></p>
</div>
<div id="info">
<p>@Html.Label("Name: ") @ViewBag.name</p>
<p>@Html.Label("Age: ") @ViewBag.age</p>
<p>@Html.Label("Comment: ") @ViewBag.comment</p>
</div>
<div id="close">
<div class="col-md-12">
<input type="button" id="closeButton" value="Close" class="btn btn-default" />
</div>
</div>
</div>
CSS:
.btn {
border: 2px solid transparent;
background: white;
color: black;
font-size: 16px;
line-height: 15px;
padding: 10px 0;
display: block;
width: 150px;
margin: 0 auto;
}
.title {
position: relative;
top: 20px;
}
.title p {
text-align: center;
font-size: 30px;
}
.title span {
color: black;
}
#info {
position: relative;
top: 50px;
left: 20px;
}
#info p {
font-size: 15px !important;
width: 310px;
}
#close {
position: relative;
top: 70px;
}
耶滾動,但然後取決於屏幕尺寸,(例如:如果我按F11將其全屏顯示)它開箱即用。無論屏幕分辨率如何,我都可以將該按鈕粘貼到模式的底部? – pavilion
我從小提琴中按f11,我仍然看到底部 – Keith