There are errors in your code that need to be fixed. Anytime you add a margin you need to add the “px” after the number unless the number is 0.
Here is the proper way to do it –
.home-feature-sidebar {
font-size: 12px;
float: left;
line-height: 22px;
margin: 0 30px 0 0;
width: 300px;
}
.home-feature-1 {
float: left;
margin: 0 30px 0 0;
width: 300px;
}
.home-feature-2 {
float: right;
width: 300px;
}
So just replace the home-feature-sidebar, home-feature-1, and home-feature-2 with the above and it should be even.