クラスのポートフォリオページに取り組んでいます。ブラウザーのサイズが変更されたときに、ブラウザーに合わせて Web ページを調整しようとしています。主にヘッダーにあるナビゲーション リンクです。また、画面がいっぱいのとき、ナビゲーション リンクは右上隅にあります。しかし、ウィンドウを元に戻すと、中央が中央になります。私は何をしますか?どんな助けでも大歓迎です。これが私のコードです。それが役に立ったら。
#header,
#main,
#footer{
display:block;
position:relative;
float:left;
}
#header,
#footer{
width:1100px;
height:80px;
}
#header{
margin-bottom:2px;
}
#footer{
margin-top:2px;
text-align:right;
border:2px;
}
#main{
width:650px;
height:200px;
margin-left:200px;
margin-right:200px;
margin-top:200px;
}
#leftcol{
float:left;
}
#nav{
border:2px solid #F00;
border-width:1px 0;
list-style:none;
margin:0;
padding:0;
text-align:center;
}
#nav li{
display:inline;
}
#nav a{
display:inline-block;
padding:10px;
}
<html>
<head>
<title></title>
<link href="styles.css" rel="stylesheet" type="text/css">
<style type="text/css">
.auto-style1 {
text-align: left;
}
</style>
</head>
<body>
<div class="auto-style1">
<div id="header">Header
<h1>Creative Minds Inc.</h1>
</div>
<div id="nav">Navigation
<ul>
<li><a href="homepage.html">Homepage</a>
</li>
<li><a href="#">Tips and Trick</a>
</li>
</li><a href="aboutme.html">About me</a>
</li>
<li><a href="#">Get in Touch</a>
</li>
</ul>
</div>
<div id="main">Main
<h2>A passion for design and a creative mind.</h2>
<h3>Design, Develop, Dream</h3>
</div>
<div id="sidebar">Navigation</div>
<div id="footer">Footer
<h3>Creative Minds Inc. Jonathan Mourning</h3>
</div>
</div>
</body>
</html>