私はウェブデザインの初心者です。Web ページを作成したばかりですが、作成したとおりに正確に表示されません。
今、私はコンテナを構築しました:
#container {
width:auto;
height:auto;
border:4px solid green;
}
質問:すべての画面とサイズのページのheight
&を修正するにはどうすればよいですか?width
どうぞ
html,body{
height:100%;
margin:0
}
.container
{
width:auto; /*Since div is block element, it takes automatic full width*/
height:100%;
background:grey;
border:4px solid green;
}
高さ:100%; さらに、4px の境界線は常にページの高さを超え、スクロール バーが常に表示されます。