“CSS правильно” Ответ

CSS правильно

.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 */;
}
Lava

Как перемещать что -нибудь осталось в CSS

<html>
   <head>
   </head>

   <body>
      <div style = "position:relative; left:80px; top:2px; background-color:yellow;">
         This div has relative positioning.
      </div>
   </body>
</html>
Vivacious Vole

div сдвигается справа

<div style="position:absolute; right:10;">Hello world</div>
Stormy Sandpiper

Ответы похожие на “CSS правильно”

Вопросы похожие на “CSS правильно”

Больше похожих ответов на “CSS правильно” по CSS

Смотреть популярные ответы по языку

Смотреть другие языки программирования