I have a webpage I made awhile ago, When coding I was not thinking of responsiveness and making it responsive is proving an issue.
When the window is in the original width (currently set as the min-width) the page looks like this:
When the window is between 960px and 1380px (my max width) I get a strange mid-way white border on the right hand side of the page:
And when the window is at or above 1380px the page looks like this:
Please note, you may need to open the image location to see the border on the white stackoverflow background!
I have tried lots of things, such as changing the float for a margin-left margin-right align, and changing floats of alternating cells, but I can't get anything to work. I need the cells to become equally spaced while the page is being re-sized.
Here is my css for the list items currently;
#server_features li{
width:414px;
height:200px;
padding:10px;
margin:10px;
margin-top:20px;
margin-bottom:20px;
float:left;
border-width:3px;
border-style:solid;
}
If you need anymore information, please don't hesitate to ask.