--- layout: single property_name: margin-left --- Defines the space outside the element, on the left side. Removes any margin on the left. You can use pixel values. You can use (r)em values. The value is relative to the font size: You can use percentage values. The auto keyword will give the left side a share of the remaining space. When combined with #margin-left
default margin-left: 0;margin-left: 50px;margin-left: 7em;<html> the root element's font sizemargin-left: 30%;
The percentage is based on the width of the container.margin-left: auto;margin-right: auto, it will center the element, if a fixed width is defined.