LoginSignup
5
1

More than 5 years have passed since last update.

Divタグの中で右下に文字を表示させたい

Posted at

作りたいイメージ

pict.PNG

実装方法

親と子のDivを作って、親にはposition:relative; 子にはposition: absolute;を指定すれば良かった

main.html
<div id="parent_flame">
  <ul>
    <li>項目1</li>
    <li>項目2</li>
    <li>項目3</li>
  </ul>
  <div id="child_flame">
   [+]
  </div>
</div>
target.css
#parent_flame {
  height:100%;
  position:relative;
  border:1px solid #ccc;
}

#child_flame {
    position: absolute;
    bottom: 0px; /** 場合によっては微調整 **/
    right: 0px;  /** 場合によっては微調整 **/
}
5
1
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
5
1