Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS What is wrong!?!? Re: What is wrong!?!?

#139745
webtmc
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.