みんな!私は長年の Web 開発者兼デザイナーですが、これには唖然としました。閉じるボタンのあるアラート (これは Bootstrap ではありません) があります。ホームページに問題なく表示されます。
しかし、送信ページに同じアラートを配置すると、閉じるボタンが下に移動します。
何か案は?ここに私のHTMLがあります:
<div class="alert">
<div class="alertContents">
When you submit yo stuff, it comes up in the feed right away.
<div class="alertClose">×</div>
</div>
</div>
そしてCSS:
.alert {
width: 100%;
background-color: #DD7474;
font-family: 'Raleway', sans-serif;
font-size: 18px;
color: #FBFBFC;
margin: auto;
border-radius: 2px;
border-color: transparent;
border-width: 0px;
border-style: solid;
}
.alertContents {
padding-top: 4px;
padding-bottom: 4px;
padding-left: 10px;
padding-right: 10px;
}
.alertClose {
float: right;
width: auto;
height: auto;
color: #FBFBFC;
cursor: hand;
}
ありがとう!