[Solved] How do you get the width to not only extend the element to the right, but also the left?


“right:” and “left:” are used for positioning. If you are setting the element absolutely there should be no issue. However if you have not explicitly set the position attribute in css then it will by default be relative and set to the top left most corner regardless of the “left:” property.

8

solved How do you get the width to not only extend the element to the right, but also the left?