我想将图像与文本链接起来,因此当我调整窗口大小时,文本将随图像一起移动。这是一个示例google.de。如您所见,在调整窗口大小时,谷歌徽标下的文本会随着图像一起移动。
这是我尝试过的。
HTML
<div class="logo"><img src="here is my logo" width="350"></div>
<div class="textlogo">Here is the text</div>
CSS
.logo
{
text-align:center;
}
.logo img
{
position:relative;
}
.textlogo
{
position:absolute;
top:25%;
left:64%;
}