CSS Position

CSS Layout — The position Property

The position property specifies the type of positioning method used for an element (static, relative, fixed, absolute or sticky).

The position Property

The position property specifies the type of positioning method used for an element.

There are five different position values:

Elements are then positioned using the top, bottom, left, and right properties. However, these properties will not work unless the position property is set first. They also work differently depending on the position value.

position: static;

HTML elements are positioned static by default.

Static positioned elements are not affected by the top, bottom, left, and right properties.

An element with position: static; is not positioned in any special way; it is always positioned according to the normal flow of the page:

Here is the CSS that is used:

Example

position: relative;

An element with position: relative; is positioned relative to its normal position.

Setting the top, right, bottom, and left properties of a relatively-positioned element will cause it to be adjusted away from its normal position. Other content will not be adjusted to fit into any gap left by the element.

Here is the CSS that is used:

Example

position: fixed;

An element with position: fixed; is positioned relative to the viewport, which means it always stays in the same place even if the page is scrolled. The top, right, bottom, and left properties are used to position the element.

A fixed element does not leave a gap in the page where it would normally have been located.

Notice the fixed element in the lower-right corner of the page. Here is the CSS that is used:

Example

position: absolute;

An element with position: absolute; is positioned relative to the nearest positioned ancestor (instead of positioned relative to the viewport, like fixed).

However; if an absolute positioned element has no positioned ancestors, it uses the document body, and moves along with page scrolling.

Note: Absolute positioned elements are removed from the normal flow, and can overlap elements.

Here is the CSS that is used:

Example

div.relative <
position: relative;
width: 400px;
height: 200px;
border: 3px solid #73AD21;
>

div.absolute position: absolute;
top: 80px;
right: 0;
width: 200px;
height: 100px;
border: 3px solid #73AD21;
>

position: sticky;

An element with position: sticky; is positioned based on the user’s scroll position.

A sticky element toggles between relative and fixed , depending on the scroll position. It is positioned relative until a given offset position is met in the viewport — then it «sticks» in place (like position:fixed).

Note: Internet Explorer does not support sticky positioning. Safari requires a -webkit- prefix (see example below). You must also specify at least one of top , right , bottom or left for sticky positioning to work.

In this example, the sticky element sticks to the top of the page ( top: 0 ), when you reach its scroll position.

Example

div.sticky <
position: -webkit-sticky; /* Safari */
position: sticky;
top: 0;
background-color: green;
border: 2px solid #4CAF50;
>

Positioning Text In an Image

How to position text over an image:

Источник

Understanding CSS positioning

Understanding CSS positioning

In this article, we’ll cover a crucial concept of CSS: CSS positioning. When working on complex layouts on a webpage, you’ll need to alter the natural document flow to change how elements are positioned on a webpage. For example, you may want to have elements overlap each other, display side by side, or in a certain way. We will see the different CSS position types and how they apply. At the end of this article, we’ll fully understand the CSS position property and the different position types, with clear code samples on each position type and how they apply.

What is the CSS position property?

The CSS position property is used to modify how elements are placed on a webpage. With the CSS position property, you can adjust the position of an element on your webpage. The CSS position property allows us to move our elements around the webpage using the top, left, right, and bottom properties.

top sets the top margin for a positioned element
bottom sets the bottom margin for a positioned element
left sets the left margin for a positioned element
right sets the right margin for a positioned element

1 movementPositive values move inwards, while negative values move outwards. Note: Without setting a position type, the top, left, right, and bottom properties will have no effect.

Types of CSS Positions

Now let’s look into each position type in detail.

Static position

position: static is the default CSS position. All elements, by default, have a static position. With the static position, you cannot adjust the placement of elements on a webpage.

Let’s look at an example: here’s a webpage with a single div element on it. By default, it already has position: static , but we’ll be adding it to confirm.

      body  background: yellow; >  .box  width: 80%;  height: 30vh;  background: red;  >        

Here’s the result of the initial code:

2

Now let’s try to move it around with the left and top properties.

.box  width: 80%;  height: 30vh;  background: red;  position: static;  left: 100px;  top: 80px; >

3

Notice you can’t see any difference? An element with the position: static cannot be moved around with the top, left, right, and bottom properties.

Relative position

In position: relative , the element is positioned according to its original position. If we position a box with position: relative , the box remains in its original position.

Let’s look at an example to understand better.

      body  margin: 0;  >  .parent  background: yellow;  display: flex;  align-items: center;  justify-content: center;  height: 100vh;  >  .box  width: 50%;  height: 40vh;  background: red;  >          

The code on the parent element is me trying to center-align the sub-element horizontally and vertically. So don’t worry about that. Centering the element will help you understand the movement of what we’ll be doing easier.

Here’s the output of the initial code:

4

Now let’s add position: relative to the box and try to move it around.

.box  width: 50%;  height: 40vh;  background: red;  position: relative; >

Here’s our output after adding position: relative

5

Yes, the output stays the same after adding position: relative . As we mentioned earlier, in position: relative , the element is positioned according to its original position. Also, if we are to try to move our element with a value of 0, it remains at the same position. Because it maintains its original position, moving with a 0 value takes no effect.

.box  width: 50%;  height: 40vh;  background: red;  position: relative;  left: 0;  top: 0; >

6

The output stays the same.

Let’s look at another example of moving the box around with actual values.

.box  width: 50%;  height: 40vh;  background: red;  position: relative;  left: 120px;  top: 120px; >

7

We can see that the box moved away, 120px from the left of its original position and 120px from the top of its original position.

Open Source Session Replay

OpenReplay is an open-source, session replay suite that lets you see what users do on your web app, helping you troubleshoot issues faster. OpenReplay is self-hosted for full control over your data.

replayer.png

Absolute position

In position: absolute elements are positioned according to the nearest containing(parent) element. Also, the parent element has to be positioned using position: relative .

Let’s look at an example with two boxes, setting the red box to position: relative and the blue box position: absolute .

.box1  display: flex;  justify-content: center;  align-items: center;  width: 50%;  height: 40vh;  background: red;  position: relative; > .box2  background: blue;  width: 40%;  height: 40%;  position: absolute; >

8

Now let’s try to move the blue box with the position: absolute . Like we said, in position: absolute the element is positioned according to its parent element, which is the red box in this case.

.box2  background: blue;  width: 40%;  height: 40%;  position: absolute;  top: 0; >

9

Notice that the box moved to the top of the parent element? Like we said, in absolute positioning, the element is positioned according to its parent element, so having a top with a value of 0, moves it to a top margin of 0 relative to its parent element.

let’s look at one more example:

.box2  background: blue;  width: 40%;  height: 40%;  position: absolute;  bottom: 50px;  right: 50px; >

Here’s what the output looks like:

10

The box moves 50px from the bottom of the parent element and 50px from the right of the parent element.

Fixed position

In position: fixed , the element is positioned according to the viewport, which is the browser window itself. According to the viewport, the element will always stay fixed at the positioned spot.

Let’s look at a similar example to the previous one. Let’s make the blue box position: fixed . Also, add a third box to see the effect of the fixed position while scrolling.

body  margin: 0; > .parent1, .parent2  background: yellow;  display: flex;  align-items: center;  justify-content: center;  height: 100vh; > .box1  width: 50%;  height: 40vh;  background: red;  position: relative; > .box2  background: blue;  width: 20%;  height: 20%;  position: fixed;  top: 50px;  right: 50px; > .box3  width: 50%;  height: 40vh;  background: green;  position: relative; >

Here’s a look at the output: The blue box remains fixed while we scroll through the page.

11

Source

Here’s a different example, with a header fixed at the top.

12

Source

Sticky position

The option position: sticky acts like a hybrid between relative and fixed. The element is positioned relative until a specified offset position is met while scrolling, then it sticks at a spot just like the fixed position.

Let’s see an example: we’ll be using the previous example of the fixed header, moving the header downwards for clarity.

.stick  background: #000;  height: 20vh;  width: 100%;  position: sticky;  top: 0;  color: #fff;  padding-left: 60px; >

Here’s the output: It acts as relative until the element meets the specified scroll position of top:0 . Then, it acts as fixed, and sticks at the specified spot.

13

Source

Z-index

The z-index property specifies the stacking order of elements. In a case where multiple elements are stacked, the z-index property helps control how these elements stack on each other. Elements with a higher z-index stay on top of elements with a lower z-index. Let’s look at an example of three boxes stacked on each other:

.red  width: 30%;  height: 40vh;  background: red;  position: absolute;  > .blue  background: blue;  width: 30%;  height: 40vh;  position: absolute;  top: 50px;  left:50px; > .green  width: 30%;  height: 50vh;  background: green;  position: absolute;  left: 150px;  top: 30px; >

14

Source

In a case where we want the blue box to display in front of both the green and red box, all we have to do is give the blue box a z-index with a higher value.

.red  width: 30%;  height: 40vh;  background: red;  position: absolute;  z-index:1;  > .blue  background: blue;  width: 30%;  height: 40vh;  position: absolute;  top: 50px;  left:50px;  z-index:3; > .green  width: 30%;  height: 50vh;  background: green;  position: absolute;  left: 150px;  top: 30px;  z-index: 2; >

15

Source

The blue box has the highest z-index, it displays over both boxes. The green box has the next highest z-index, it displays over the red box.

Resources

Conclusion

Hopefully, we now understand the CSS position property, the different types of CSS positions, and how they apply. Now we can go on to position our elements around web pages properly.

A TIP FROM THE EDITOR: For an interesting way to include CSS in your pages, look at our Incorporating CSS to a Page via HTTP Headers article.

A look at internal details of how JavaScript manages memory

Explaining JavaScript’s Execution Context and Stack

Learn what

Источник

Читайте также:  Как создать html макет
Оцените статью