Перейти на правый CSS
#elem_tag{ /*Just do following!! ;)*/
margin-left: auto;
margin-right: 0;
}
Armandres
#elem_tag{ /*Just do following!! ;)*/
margin-left: auto;
margin-right: 0;
}
.right {
position: fixed; /* the fixed pos makes it work */
right: /*how much you want to move it right
put % or px or rem at end of the amount */;
}
<html>
<head>
</head>
<body>
<div style = "position:relative; left:80px; top:2px; background-color:yellow;">
This div has relative positioning.
</div>
</body>
</html>
<div style="position:absolute; right:10;">Hello world</div>