Испытание[18/18]

Помогите, первый раз визуально испытание пройдено, но всего 96% , кажется ошибка кроется в этом отрезке кода, но как исправить

 .fact:nth-child(3) div{
    background: #ecf0f1;
 }
  .fact:nth-child(5) div{
    background: #ecf0f1;
   }
  .info .fact:after {
   content: "";
     display: table;
     clear: both;
  }

Вот весь код

 html,
    body {
        margin: 0;
        padding: 0;
    }

    body {
        width: 550px;
        height: 300px;
        font-size: 12px;
        font-family: Tahoma, Arial, sans-serif;
    }

    .profile {
        padding: 5px 10px;
    }

    .profile img {
        display: block;
        padding: 10px;
        border: 2px solid #34495e;
        border-radius: 8px;
    }

    .profile .photo {
        float: left;
        width: 152px;
    }

    .profile .info {
        float: left;
        width: 368px;
        margin-left: 10px;
    }
    #info-title
    {
        background:#34495e;
        }
    .info h2 {
        margin: 0 !important;
        padding: 10px !important;
        font-weight: normal;
        font-size: 12px;
        color: #ffffff;
        background: #34495e;
        border-radius: 4px;
    }

    .fact div{
        padding: 10px;
        background: white;
    }

    .fact:nth-child(3) div{
        background: #ecf0f1;
    }
    .fact:nth-child(5) div{
        background: #ecf0f1;
    }
    .info .fact:after {
        content: "";
        display: table;
        clear: both;
    }

    .info .fact .title {
        float: left;
        width: 120px;
        text-align: right;
        color: #7f8c8d;
    }

    .info .fact .value {
        margin-left: 140px;
        color: #34495e;
    }

    .albums {
        margin-top: 5px ;
    }
    #miska 
    {
        margin-right:5px;
        }
    .albums img {
        float: left;
        margin-right: 5px;
    }

    .albums img:last-child {
        float:right;
        margin-right: 0;
    }

    .photo .button {
        display: block;
        height: 30px;
        margin: 5px 0;
        line-height: 30px;
        text-align: center;
        color: #ffffff;
        border-radius: 4px;
    }

     .photo > .stroke {
        background: #3498db;
    }

     .photo > .feed {
        background: #2ecc71;
    }

     .photo > .startle {
        background: #e74c3c;
    }

Нет, не в том отрезке. В следующем правиле вы сами дописали float:right; которого не было изначально.

Оу, блин, как не заметил, спасибо)

никак не получается найти, что упустила
различие только в отступах четырех картинок от панели Альбомы

код:
html,
body {
margin: 0;
padding: 0;
}

body {
width: 550px;
height: 300px;
font-size: 12px;
font-family: Tahoma, Arial, sans-serif;
}

.profile {
padding: 5px 10px;
}
.profile .photo {
float: left;
width: 152px;
}

.profile img {
display: block;
padding: 10px;
border: 2px solid #34495e;
border-radius: 8px;
}

.profile .info {
float: left;
width: 368px;
margin-left: 10px;
}

.info #info-title {
margin: 0;
padding: 10px;
font-weight: normal;
font-size: 12px;
color: #ffffff;
background: #34495e;
border-radius: 4px;
}

.info .fact:nth-child(2n) {
padding: 10px;
background: white;
}

.info .fact:nth-child(odd) {
background: #ecf0f1;
padding: 10px;
}

.info .fact:after {
content: “”;
display: table;
clear: both;
}

.info .fact .title {
float: left;
width: 120px;
text-align: right;
color: #7f8c8d;
}

.info .fact .value {
margin-left: 140px;
color: #34495e;
}
.info h2 {
margin-top: 0 !important;
padding: 10px !important;
font-weight: normal;
font-size: 12px;
color: #ffffff;
background: #34495e;
border-radius: 4px;

}
.albums {
margin-top: 0;
}

#miska {
margin-right: 5px;
}

.albums img {
float: left;
margin-right: 5px;
}

.albums img:last-child {
margin-right: 0;
float: right;
}

.photo .button {
display: block;
height: 30px;
margin: 5px 0;
line-height: 30px;
text-align: center;
color: #ffffff;
border-radius: 4px;
}

.photo .stroke {
background: #3498db;
}

.photo .feed {
background: #2ecc71;
}

.photo .startle {
background: #e74c3c;
}

Не надо менять свойства в правилах.
Вот так было изначально:
.albums {
margin-top: 5px;
}