position absolute CSS

PHOTO EMBED

Wed Sep 27 2023 07:25:59 GMT+0000 (Coordinated Universal Time)

Saved by @abab

/*CSS*/

.papa{
    position: relative;
    background-color:#EFF1F5;
    text-align: center;
    height: 200px;
    border-radius: 10px; 
}

.child{
    position: absolute;
    top:10px;
    left: 10px;
    background-color:#002bc7;
    color: #fff;  
    padding: 50px;
    border-radius: 10px;   
}
content_copyCOPY