0

I'm trying to change an element position after grouping with another element but it doesn't work

#Image,#Btn{
    position: absolute;
    top: 50px;
    left: 50px;
}
#Btn{
    right: 50px;
}
<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="UTF-8">
        <link rel="stylesheet" href="style.css">
    </head>
    <body>
        <header class="Head">
            <div>
                <img src="logo.png" alt="logo" id="Image">
                <button id="Btn">Try It Free</button>
            </div>
        </header>
    </body>
</html>

1 Answers1

0

You should set left: auto if you want to use right: 50px;

#Btn{
    right: 50px;
    left:auto;
}