How to right align fixed position div inside a div

后端 未结 7 2114
庸人自扰
庸人自扰 2021-02-19 19:03

My code is like this.

some text here

CSS:



        
7条回答
  •  清歌不尽
    2021-02-19 19:12

    I think this is what you want

    some text here
    .outer { margin: 0 auto; width: 860px; direction: rtl; background-color: black; height: 1200px; } .inner { float: right; position: fixed; text-align: center; width: 220px; background-color: red; height: 50px; }

提交回复
热议问题