LoginSignup
7
2

More than 3 years have passed since last update.

要素を右下に配置 ❏CSS❏

Last updated at Posted at 2019-11-27

・親要素に
position: relative;

・子要素に
position: absolute
right: 0;
bottom: 0;

をあててあげましょう。

xxx.css
.contents {
  position: relative;
}

.content {
  position: absolute;
  right: 0;
  bottom: 0;
}



ではまた!

7
2
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
7
2