Answers for "position relative vs absolute css"

CSS
4

css position

h2.pos_left {
  position: relative;
  left: -20px;
}

h2.pos_right {
  position: relative;
  left: 20px;
}
Posted by: Guest on May-12-2020
1

html position div

<!DOCKTYPE html> <!-- Start of coding page -->
<html> <!-- Start of html coding -->
  <head> <!-- Start of head -->
    <title>TITLE<title> <!-- Title -->
    <script>
      //JavaScript
    </script>
    <style>
      /* CSS */
    </style>
  </head> <!-- End of head -->
  <body> <!-- Start of body -->
    <div id='mydiv' style = "position:relative; left:0px; top:100px;">
      Hello! 
      <!-- Use that style tag to positions things, have a play around with it! -->
    </div>
  </body> <!-- End of body -->
<html> <!-- End of html coding -->
<!-- Add this line of code next to your id: 

style = "position:relative; left:0px; top:100px;" 

too let you position divs where you want them, you can even position
them ontop of other divs! -->
Posted by: Guest on June-22-2020
0

what is the difference between relative and absolute css

<!doctype html>
<html>
<head>
<title>ABSOLUTE POSITIONING</title>
<link href="example1.css" rel="stylesheet">
</head>
<body>
  <div class="a1">
  <div class="a2"></div>
  </div>
</body>
</html>

<style>.a1	{
  width:304px;
  height:304px;
  background-color:white;
  border:3px solid blue;
  text-align:center;
  position:relative;
}
.a2	{
  width:154px;
  height:154px;
  background-color:white;
  border:3px solid orange;
  text-align:center;
  position:absolute;
  top:100px;
  left:40px;
}
</style>
Posted by: Guest on August-24-2021
0

what is the difference between relative and absolute css

position: absolute;
Posted by: Guest on August-24-2021
0

what is the difference between relative and absolute css

position: absolute;top: 50px;
Posted by: Guest on August-24-2021
0

what is the difference between relative and absolute css

position: fixed;
Posted by: Guest on August-24-2021

Code answers related to "position relative vs absolute css"

Browse Popular Code Answers by Language