


Here is the structure of my web page. I created three divs under content, left, centre and right. Centre and right both have offset 641, same as content class. However, offset of left_feature is different from others, leading to elements of left not aligning with other elements. I tried to set the padding, border and margin-top but these did not change. I tried inspection of element and successfully forced element of left to move to correct position once by setting padding and margin but never succeeded again. Could anyone help me?
That offset is basically the x,y position that the browser has calculated for the element based on it's position css attribute.
if you are using
display: inline-block;just specify vertical alignment of the elements like,or
use
position: absolute;for the divsor
play with
negative marginto adjust the same.