user347021
3
Q:

css left

<html>
   <head>
   </head>

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

div.fixed {
  position: fixed;
  
bottom: 0;
  right: 0;
  width: 
300px;
  border: 3px solid #73AD21;
} 
0
.right {
  position: fixed; /* the fixed pos makes it work */
  left: /*how much you want to move it left 
    put % or px or rem at end of the amount */;
}
-1

New to Communities?

Join the community