私は HTML/CSS に非常に慣れていませんが、ブラウザーがズームイン/アウトしたり、ブラウザーのサイズが変更されたりしても、要素をその位置に維持する際の重要な属性をまだ知りません。
一部の画像をその位置に固定したままにすることができましたが、ブラウザのサイズを変更すると歪んでしまいます。
これまでの私の仕事は次のとおりです。
HTML
home.php
p.copyright {
font-weight: bold;
text-align: center;
font-style: regular;
}
.clear {
clear: both;
}
#header {
display: block;
width: 80%;
top: 0;
z-index: 1;
text-align: center;
position: fixed;
overflow: hidden;
margin-left:10%;
}
#footer {
width: 80%;
position:fixed;
display: block;
bottom: 0px;
overflow: hidden;
margin-left:10%;
}
#logo {
position: relative;
text-align: left;
margin-left: 0;
float: left;
height: 95px;
width:300px;
}
#navcontainer {
display: block;
margin-right:0;
float: right;
position: relative;
}
#textbox {
position: relative;
float: right;
height: 95px;
width:300px;
}
#htimg, #bb-sb {
position: relative;
}
#navcontainer ul {
padding:0px
list-style-type: none;
text-align: center;
}
#navcontainer ul {
list-style-type: none;
}
#navcontainer ul li {
display: inline;
}
#navcontainer ul li a:hover {
color: red;
background-color: #;
}
私は、自分のコードが非常に厄介であることを十分に認識しています (そして、一貫性がないと思います)。また、ブラウザーが同じように動作しないことにも気付きました。これについてどのような解決策を講じるべきですか?