How to right align fixed position div inside a div

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

My code is like this.

some text here

CSS:



        
7条回答
  •  鱼传尺愫
    2021-02-19 19:08

    A bit hacky, but it works

    .outer {
        width:200px;
        height:600px;
        background-color:red;
        margin:0 auto;
        direction: rtl; 
    }
    .inner {
        width:50px;
        border:1px solid white;
        direction: ltr;
    }
    

提交回复
热议问题