CSSz-indexプロパティの使用
z-indexプロパティは位置とともに使用されます レイヤーの効果を作成するプロパティ。どの要素を上に、どの要素を下に配置するかを指定できます。
次のコードを実行して、 z-indexを実装してみてください。 プロパティ-
<html> <head> </head> <body> <div style = "background-color:blue; width:300px; height:100px; position:relative; top:10px; left:80px; z-index:2"> </div> <div style = "background-color:gray; width:300px; height:100px; position:relative; top:-60px; left:35px; z-index:1;"> </div> <div style = "background-color:yellow; width:300px; height:100px; position:relative; top:-220px; left:120px; z-index:3;"> </div> </body> </html>
-
CSSのpositionプロパティを使用して要素を整列する
CSSポジショニングスキーマメソッド(固定、相対、絶対、静的)とプロパティ(左、右、上、下)を使用して要素を整列できます。 例 ポジショニングスキーマを使用して要素を整列させる例を見てみましょう- <!DOCTYPE html> <html> <head> <title>Alignment using CSS Position</title> <style> .screen { padding: 10px; width: 70%; margin
-
CSSで使用するプロパティの表示
すべてのHTML要素には、CSSDisplayプロパティにデフォルト値が設定されています。このプロパティは、要素がドキュメントでどのようにレンダリングされるかを指定します。 注 −デフォルトの表示プロパティはオーバーライドできますが、要素のタイプは変更されず、ドキュメントでの表示動作だけが変更されます。 以下は、CSSDisplayプロパティの値の一部です- ブロック インライン インラインブロック なし 例 CSSDisplayプロパティの例を見てみましょう- <!DOCTYPE html> <html> <head> <title>