500x250のテキストボックスと画像しかない白いページがあります。ページは流動的です。
画面の左下に画像を固定しながら、テキストボックスをページの中央に配置しようとしています。私は次のcssでこれを部分的に達成します:
.bottom-right { /* used to fix the image to the bottom of the screen */
bottom: 0;
right: 0;
position: fixed;
}
#content {
margin-left: auto;
margin-right: auto;
margin-top: 50%;
width: 500px;
height: 250px;
position: relative;
}
ウィンドウのサイズを垂直方向に変更すると、画像がテキストボックスを覆います。代わりに、テキストを上げてほしい。