Aligning Html elements

Workflow:

You have two options depending on what you want to align. The only requirement is that the component has block level properties. That means it could occupy a single line or be shifted to the right or left. You could use:

aligning text:

placeholder This can be used to align text sections of the page like Headings and paragraphs. Its important to note that applying this to anchor elements moves all elements withing it to the specified side. You may use it to align anchors styled as buttons to the center.

.content {
	text-align: right;
	/* options: left, right, center */
	/* Applies to: Headings, paragraphs, spans, mostly text within an element.*/
}

Moving whole elements:

placeholder If you want to align a block level element, Lets say a div to the right or the left you can easily do that using float. The only downside is that the element will be no longer occupy the whole line after but collapse to the width of its content. You can fix that using clear

.content {
	float: left;
	/* options: right/left*/
	/* Applies to: Nearly all block level elements eg headings, paragraphs */
	clear: right; /* you want no element to occupy the vacant space beside this element */
}

You can center align divs using auto for right and left margins instead.

.middle {
	margin: 0 auto;
}

Moving withing element aboundaries:

placeholder Some time you just want the text to move slightly to the side. Lets say 100px from the left edge of the viewport. You are have the option of adding specific left margins/paddings.

Margins and paddings:

Padding/margin depends on where the space will come from either within the element or outside it. Not different unless you intend to add outlines on the element

.content {
	margin-left: 30px;
	padding-left: 30px;
	/* options: You can use specific measurements eg em, 20%, px  */
	/* Applies to: Nearly all elements, I doubt if it works on the body tag.*/
}
Offset properties:

Similar to Margins and Paddings but only apply to absolutely positioned elements. If you want to position elements relative to the parent element you have set parent positioning to relative and then child elements to absolute. This is an alternative to using huge amounts of padding.

.parent {
	width:50%; /* maintain the parent element's size even when its empty */
	position: relative;
}

.child {
	position: absolute;
	/* move 30px from both the left and bottom edges */
	left: 30px;
	bottom: 30px;
	z-index: 2; /* raise the child above the parent element */
}

Want to see something else added? email me

End of story