htmlcss

The left property is used in CSS and certain HTML elements. It specifies part of the position of positioned elements. For absolutely positioned elements (those with position:absolute; or position:fixed;), it specifies the distance between the left margin edge of the element and the left edge of its containing block.

Values


HTML example:

<div style="position:fixed; left:10px;">
TEXT
</div>


CSS example:

div {
     position:fixed;
     left:10px;
}