我是 HTML 和 CSS 的新手,也是这个论坛的新手。我在浏览器缩放功能上遇到了一些问题。我想在我的 DIV 的底部贴一张图片,就像我在这张照片中展示给你的一样。 http://imageshack.us/a/img29/1417/n81h.png
但是当我使用浏览器缩放时,图像会移动并且不再与 DIV 的底部对齐,如下所示:http: //imageshack.us/a/img14/221/vrqd.png
我能做些什么呢?我搜索了很多,但找不到明确的答案。谢谢!
<head>
<title>Portfolio</title>
<link href="MyStyle.css" rel="stylesheet" type="text/css" />
</head>
<body style="background:#81DAF5">
<div>
<div ID="Page1">
Welcome at my portfolio
<div ID="Creative">Being creative is being me</div>
<div><img id="head" src="head2.png"/></div>
</div>
<div ID="Page2">Random Text 2 :)</div>
<div ID="Page3">Random Text 3 :)</div>
</div>
</body>
}
#Page1{
font-family:Cartoon;
font-size:100px;
text-align:center;
background-color:#D8D0F4;
width:80%;
height:80vh;
border-radius:60px;
margin: 10vh auto 10vh auto;
border: 10px solid #FFE1E1;
}
#Page2{
font-family:Cartoon;
font-size:30px;
text-align:center;
background-color:#D8D0F4;
width:80%;
height:80vh;
border-radius:60px;
margin: 20vh auto 10vh auto;
border: 10px solid #FFE1E1;
}
#Page3{
font-family:Cartoon;
font-size:30px;
text-align:center;
background-color:#D8D0F4;
width:80%;
height:80vh;
border-radius:60px;
margin: 20vh auto 0vh auto;
border: 10px solid #FFE1E1;
}
#Creative{
font-family:cartoon;
font-size:50px;
}