に応じてウェブサイトを調整するために、私は私のウェブサイトの特定のセクションのための次のCSSがあります、私は検索何からどのように画面解像度
.menu{
top:7%;
height: 100%;
left:10%;
bottom:10%;
width: 18%;
height: 47%;
z-index:1;
position:absolute;
}
.menu .star{
background: url("button.png") 0% 0%/ 80% 80% no-repeat;
border: none;
width:5em;
height:5em;
padding-left:3%;
margin-left: 30%;
transition-duration:0.3s;
-moz-transition: 0.3s;
-ms-transition: background 0.3s;
-webkit-transition: background 0.3s;
-ms-transform: rotate(7deg);
-webkit-transform: rotate(7deg);
transform: rotate(7deg);
}
#buttonlist{ /*this is the name of the ul containing namelist,contained in .menu
margin-top: -90%;
margin-left: -20%
}
.namelist{
text-transform: uppercase;
position:relative;
margin-left:15%;
margin-bottom:16%;
font-size: 110%;
font-weight:bold;
font-family: helvetica;
color:#66e0ff;
background-color: Transparent;
border:none;
outline:none;
}
をほとんどのソリューションは、「使用率」ですが、私のCSSはパーセンテージでIS私は問題が何であるか分からない。
さまざまなブラウザでサイトをテストすると、位置のずれがあります。ウェブサイトの背景も切り取られています。バックグラウンドについては、ユーザーがウィンドウサイズを変更したときに背景を調整したくないため、100%100%カバーやバックグラウンドサイズは使用しませんでした。
私の質問をまとめると、画面の解像度に合わせて配置を調整するにはどうしたらいいですか?また、背景サイズを最大ウィンドウサイズに調整して、ユーザーがウィンドウのサイズを変更したときに調整しない方法はありますか?