To center an HTML element I can use the CSS left: 50%;. However, this centers the element with respect to the whole window.
I have an element which is a child of a <div> element and I want to center the child with respect to this parent <div>, not the whole window.
I do not want the container <div> to have all its content centered, just the one specific child.
Set
text-align:center;to the parent div, andmargin:auto;to the child div.This a good resource to center mostly anything.
http://howtocenterincss.com/