I just started to learn web programming and faced the problem described in the title of the topic. Here is my code:
<html> <head> <title>ПредиСЛОВие</title> <style> html { height:100%; } body { height:100%; background:url(Image/pr.png); background-size:100%100%; background-attachment:fixed; } .logo { position:fixed; right:39%; } .logo1 { position:fixed; bottom:30%; left:10%; } .logo2 { position:fixed; bottom:31%; left:41%; } .logo3 { position:fixed; bottom:31%; right:10%; } .logo4 { position:fixed; bottom:23%; left:10%; } </style> </head> <body> <div class="logo"> <a href="prdsl.html"> <img src="Image/pr1.png"> </a> </div> <div class="logo1"> <a href="News.html"> <img src="Image/pr2.png"> </a> </div> <div class="logo2"> <a href="Video.html"> <img src="Image/pr3.png"> </a> </div> <div class="logo3"> <a href="cntk.html"> <img src="Image/pr4.png"> </a> </div> <div class="logo4"> <font size="10" color="white" face="Politica">О ПРОЕКТЕ</font> </div> </body> </html>
And a few more screenshots to illustrate the problem. Screenshots illustrate the state of the page before increasing and decreasing and after such changes!
Screenshots:
Corrected code:
<html> <head> <title>Slovo - Одесса</title> <style> html { height:100%; } body { margin:0; height:100%; background:url(Image/pr.png); background-size:100%100%; } .wrapper { position: relative; display: block; min-width: 960px; min-height: 700px; } .logo { position:absolute; top:5px; right:990px; } .logo1 { position:absolute; top:645px; right:2000px; } .logo2 { position:absolute; top:655px; right:1050px; } .logo3 { position:absolute; top:634px; right:200px; } .logo4 { position:absolute; top:1000px; right:2100px; } </style> </head> <body> <div class="wrapper"> <div class="logo"> <a href="prdsl.html"> <img src="Image/pr1.png"> </a> </div> <div class="logo1"> <a href="News.html"> <img src="Image/pr2.png"> </a> </div> <div class="logo2"> <a href="Video.html"> <img src="Image/pr3.png"> </a> </div> <div class="logo3"> <a href="cntk.html"> <img src="Image/pr4.png"> </a> </div> <div class="logo4"> <font size="10" color="white" face="Politica">О ПРОЕКТЕ</font> </div> </div> </body> </html>