0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

CSS postion absolute / relative

Posted at

##positionプロパティ
positon = 要素を配置する基準を指定するプロパティ
基準の場所を区別する為に、absolute(絶対位置)relative(相対位置)がある。

##absolute(絶対位置)
移動するときの基準がウィンドウ、もしくは親要素になる。
absoluteで指定した場合、他の要素を無視して左上(top:0、left:0の位置)が基準になる。

.クラス名 or #id名 {
    position: absolute;     
}

##relative(相対位置)
移動するときの基準が元々いた位置(positionを記述する前に配置されていた場所)になる。
親要素にrelativeを指定することで、親要素の位置を基準に子要素を移動させることもできます。

.クラス名 or #id名 {
    position: relative;     
}

参考元はこちら
こちらのサイトにて画像でわかりやすく説明されていますので是非ご覧ください。
https://uxmilk.jp/63409)

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?