CSS
 Computer >> コンピューター >  >> プログラミング >> CSS

CSSでの静的ポジショニング


静的配置では、要素は上、下、左、および右のプロパティの影響を受けません。これには、 position:static。を使用します

例を見てみましょう-

<!DOCTYPE html>
<html>
<head>
<style>
div.static {
   position: static;
   color: white;
   background-color: orange;
   border: 2px dashed blue;
}
</style>
</head>
<body>
<h2>Demo Heading</h2>
<p>This is demo text.</p>
<p>This is demo text.</p>
<div class="static">
position: static;
</div>
<p>This is another demo text.</p>
</body>
</html>

出力

CSSでの静的ポジショニング


  1. CSSでの相対的な位置付け

    相対配置では、要素は通常の位置を基準にして配置されます。これには、位置:相対を使用します 例 例を見てみましょう- <!DOCTYPE html> <html> <head> <style> div.demo {    position: relative;    color: white;    background-color: orange;    border: 2px dashed blue;    left: 50px; } <

  2. CSSを使用した静的ポジショニング

    CSSでの要素の配置は、要素を特別な方法ではなく通常の方法でレンダリングする静的なものとして定義できます。静的に配置されている要素は、CSSの配置プロパティ(左、右、上、下)の影響を受けません。 例 CSS静的測位方法の例を見てみましょう- <!DOCTYPE html> <html> <head> <style> p {    margin: 0; } div:first-child {    position: static;    background-color: orange