Common adjustment and manipulation methods for html layouts.
Equalizes the height css property of every element in a selector. If no height is currently present, the method computes the height values before equalizing. Elements must be visible at the time or will be considered as having a height of 0.
selectoroptionsselector
											String|jQueryObject|DOMElement
										The affected elements.
[options]
											Object
											Optional
										Additional options.
[nbPerRow = 0]
														Number
														Optional
													Allows the elements to be compared in groups of a given number.
[resetHeight = false]
														Boolean
														Optional
													Resets css height of all elements to 'auto' before comparing.
[borderBox = false]
														Boolean
														Optional
													If true, heights will be computed as if the elements had the 'box-sizing' css attribute to 'border-box'.
kafe.style.equalHeight('.products', { nbPerRow: 3, resetHeight: true });
					$('.products').kafe('style.equalHeight', { nbPerRow: 3, resetHeight: true });
					
							Replaces <hr> tags into <div class="hr"></div> tags to eliminate styling restrictions.
selector = 'hr'[selector = 'hr']
											String|jQueryObject|DOMElement
											Optional
										Restricts the process to a specific context.
kafe.style.replaceHr('.page-content');
					$('.page-content').kafe('style.replaceHr');
					
							Vertically align an element inside its parent. Elements must be visible at the time or positioning calculations will fail.
selectorparent = DIRECT_PARENTselector
											String|jQueryObject|DOMElement
										Affected elements.
[parent = DIRECT_PARENT]
											String|jQueryObject|DOMElement
											Optional
										Container in which we want to be centered.
kafe.style.vAlign('.menu-items > .label');
					$('.menu-items > .label').kafe('style.vAlign');