I want to link an image with the text, so when I will resize the window, the text will move with the image. Here is an example google.de. As you can see the text under the google logo move along with image when resizing the window. Here what I tried.HTML\[code\]<div class="logo"><img src="http://stackoverflow.com/questions/12762146/here is my logo" width="350"></div><div class="textlogo">Here is the text</div>\[/code\]CSS\[code\].logo{ text-align:center;}.logo img{ position:relative;}.textlogo { position:absolute; top:25%; left:64%;}\[/code\]