0
基本的な通知コンポーネントを構築していますが、正しく配置するのは苦労しています。ここに私のhtmlです:css vuejsで通知をフロートして右揃えにする方法
<div class="notifications">
<p>{{ notification.message }}</p>
</div>
そして、ここで私のnotifications
クラスです。このバージョンでは
.notifications {
position: relative;
right: 10px;
top: 10px;
width: 100px;
z-index: 1;
color: black;
padding: 5px 5px 5px 5px;
background-color: red;
border-radius: 5px;
margin-bottom: 5px;
}
、通知が画面ここhttps://jsfiddle.net/fb343fh6/
の左下に表示されることは私の他の試みです:
.notifications {
position: fixed;
right: 10px;
top: 10px;
width: 100px;
z-index: 1;
color: black;
padding: 5px 5px 5px 5px;
background-color: red;
border-radius: 5px;
margin-bottom: 5px;
}
このバージョンでは、通知Sは、画面の右上に正しく表示されますが、一つだけの通知はhttps://jsfiddle.net/762gg0bm/
注表示されます - 私は私のフロントエンドフレームワーク
としてvue.jsを使用しています誰かが助けることができますか?前もって感謝します!
"左下" のデモは、実際に "右上" と同じです – DaniP