・親要素に
position: relative;
・子要素に
position: absolute
right: 0;
bottom: 0;
をあててあげましょう。
xxx.css
.contents {
position: relative;
}
.content {
position: absolute;
right: 0;
bottom: 0;
}
ではまた!
Go to list of users who liked
More than 5 years have passed since last update.
・親要素に
position: relative;
・子要素に
position: absolute
right: 0;
bottom: 0;
をあててあげましょう。
.contents {
position: relative;
}
.content {
position: absolute;
right: 0;
bottom: 0;
}
Register as a new user and use Qiita more conveniently
Go to list of users who liked