CSS Center floats

Date: 2016-03-19
.parent-element {
    clear: both;
    float: left;
    overflow: hidden;
    width: 100%;	
}
	
.child-element {
    float: left;
    left: 50%;
    position: relative;
}
	
.child-of-child-element {
    float: left;
    position: relative;
    right: 50%;
}
1500cookie-checkCSS Center floats