我有一个只有 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;
}
当我垂直调整窗口大小时,图像会覆盖文本框。相反,我希望文本上升。