メインコンテンツのdivをCSSとHTMLで画面の高さいっぱいにする方法
以下の例では、高さはパーセンテージで指定されておらず、jQueryは必要ありません
.mainbody{ position: absolute;//here we are setting the position of an element as absolute top: 30px; /* here we are defining Header Height to 30 px */ bottom: 10px; /*here we are defining Footer Height to 10 px */ width: 100%;// here we are setting the width to 100% }
-
CSSを使用してウィンドウの高さの100%のDIVを作成する方法
CSSのheightプロパティは、要素の高さを指定するのに役立ちます。 構文 CSSのheightプロパティの構文は次のとおりです- Selector { height: /*value*/ } 例 次の例は、CSSの高さプロパティを示しています。 <!DOCTYPE html> <html> <head> <title>Page Title</title> <style>  
-
HTMLとCSSを使用してサイドバーとメインコンテンツ領域を含むページを作成する
HTMLと本文のサイズを100%に設定すると、流動的なサイドバーとメインコンテンツ領域を備えたWebページが作成されます。 次の例はこれを示しています。 例 <!DOCTYPE html> <html> <head> <style> html,body { height: 100%; color: white; font-size: 2em; line-height: 200px; } #parent { displ