How to place div in top right hand corner of page

前端 未结 4 1181
半阙折子戏
半阙折子戏 2021-01-30 16:15

How do you float a div to the top right hand corner of a page using css? I want to float the topcorner div which is below:

4条回答
  •  暖寄归人
    2021-01-30 16:39

    Try css:

    .topcorner{
        position:absolute;
        top:10px;
        right: 10px;
     }
    

    you can play with the top and right properties.

    If you want to float the div even when you scroll down, just change position:absolute; to position:fixed;.

    Hope it helps.

提交回复
热议问题