Home › Forums › CSS › What is wrong!?!? › Re: What is wrong!?!?
June 21, 2013 at 9:46 am
#139745
Participant
[Forked Pen](http://cdpn.io/ngacx “Forked”)
Few changes. In your css, split your content-module like this:
.content-module {
width: 70%;
float: left;
}
.content-module article{
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
background-color: #fff;
padding: 3% 5%;
margin: 0 0 2% 0;
}
Then combine both articles into one content-module div. Fixed it right up.