I don't understand why the search field on our website follows a margin-right
CSS command BUT NOT a margin-left
CSS command. How come?
.header-top .search-field {
border-top: none;
border-bottom: none;
height: 34px;
border-color: #EDEDED;
outline: none;
}
The search field shows up only after clicking on the search icon to the top left of the page. This icon also previously wouldn't move to the left through a margin-left
CSS command but I was finally able to move it through the right
CSS command. I wonder what's the difference between the two.
Will appreciate feedback.