ホームページ > 記事 > ウェブフロントエンド > CSS のエッジ オフセット プロパティの上、右、下、左の使用方法の詳細については、こちらをご覧ください。
1: 上部オフセット 属性
は、要素の上部のオフセット位置のサイズを定義するために使用されます。 top: auto | length |percent
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title> CSS属性实例 </title> <meta name="Generator" content="EditPlus"> <meta name="Author" content=""> <meta name="Keywords" content=""> <meta name="Description" content=""> <style> p{ top: 100px; position: absolute; border: 2px solid #333333; background: #666666; width: 300px; height: 50px; } </style> </head> <body> <p>这是使用边偏移属性的实例</p> </body> </html>
2: 右オフセット属性 right
は、要素の右側のオフセット位置のサイズを定義するために使用されます。右: auto | length |percent;
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title> css属性实例 </title> <meta name="Generator" content="EditPlus"> <meta name="Author" content=""> <meta name="Keywords" content=""> <meta name="Description" content=""> <style> p{ right: 100px; position: absolute; border: 2px solid #333333; background: #666666; width: 300px; height: 50px; } </style> </head> <body> <p>这是使用边偏移属性的实例</p> </body> </html>
3: 下部オフセット属性bottom
は、下部オフセット位置のサイズを定義するために使用されます。 Bottom: auto | length;
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title> css属性实例 </title> <meta name="Generator" content="EditPlus"> <meta name="Author" content=""> <meta name="Keywords" content=""> <meta name="Description" content=""> <style> p { bottom: 100px; position: absolute; border: 2px solid #333333; width: 300px; height: 50px; } </style> </head> <body> <p>这是使用下边偏移属性bottom</p> </body> </html>
4: 左オフセット属性 left
は、要素の左オフセット位置のサイズを定義するために使用されます。
以上がCSS のエッジ オフセット プロパティの上、右、下、左の使用方法の詳細については、こちらをご覧ください。の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。