Placing an image to the top right corner - CSS

后端 未结 3 478
野性不改
野性不改 2020-12-04 08:10

I need to display an image on the top-right corner of a div (the image is a \"diagonal\" ribbon) but keeping the current text contained in an internal div, like stuck to the

3条回答
  •  Happy的楠姐
    2020-12-04 08:52

    You can just do it like this:

    #content {
        position: relative;
    }
    #content img {
        position: absolute;
        top: 0px;
        right: 0px;
    }
    
    
    some text...

提交回复
热议问题