Взломанный котопрофайл, вот код 100% попадания

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 #info-title {
margin: 0;
padding: 10px;

font-weight: normal;
font-size: 12px;
color: #ffffff;
background: #34495e;
border-radius: 4px;
}

.profile .info .fact {
padding: 10px;
background: white ;
}

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

.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;
}

div.albums {
margin-top: 5px;
clear: both;
}
.info h2 {
margin: 0 !important;
padding: 10px !important;

font-weight: normal;
font-size: 12px;
color: #ffffff;
background: #34495e;
border-radius: 4px;
}

div.albums img, #miska {
width: 64px;
height: 64px;
float: left;
margin-right: 5px;
}

div.albums img:last-child {
margin-right: 0;
}
div.albums::after {
content: “”;
display: table;
clear: both;
}

.photo .button {
display: block;
height: 30px;
margin: 5px 0;

line-height: 30px;
text-align: center;
color: #ffffff;
border-radius: 4px;
text-decoration: none;
}

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

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

.photo .startle {
background: #e74c3c;
}

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 #info-title,
.info h2 {
margin: 0 !important;
padding: 10px !important;

font-weight: normal;
font-size: 12px;
color: #ffffff;
background: #34495e;
border-radius: 4px;
}

.profile .info .fact {
padding: 10px;
background: white;
}

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

.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;
}

div.albums {
margin-top: 5px;
clear: both;
}

div.albums img,
#miska {
width: 64px;
height: 64px;
float: left;
margin-right: 5px;
}

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

.profile .button {
display: block;
height: 30px;
margin: 5px 0;

line-height: 30px;
text-align: center;
color: #ffffff;
border-radius: 4px;
text-decoration: none;
}

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

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

.button.startle {
background: #e74c3c;
}

Для разнообразия использовал селекторы атрибутов (хотя в случае с id можно было вообще ничего не использовать), но самое приятное –– удалось использовать соседние селекторы. Интересный был “вызов” :slight_smile:

Сводка

:eyes: :shushing_face:

Сводка
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 h2, #info-title {
  margin: 0 !important;
  padding: 10px !important;

  font-weight: normal;
  font-size: 12px;
  color: #ffffff;
  background: #34495e;
  border-radius: 4px;
}

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

[class].fact:nth-child(odd) {
  background: #ecf0f1;
}

.fact::after {
  content: "";
  display: table;
  clear: both;
}

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

div.title + .value {
  margin-left: 140px;
  color: #34495e;
}

.albums {
  margin-top: 5px;
}

.albums img, [id]#miska {
  width: 64px;
  height: 64px;
  float: left;
  margin-right: 5px;
}

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

a.button {
  display: block;
  height: 30px;
  margin: 5px 0;

  line-height: 30px;
  text-align: center;
  color: #ffffff;
  border-radius: 4px;
  text-decoration: none;
}

a[class].stroke {
  background: #3498db;
}

a[class].feed {
  background: #2ecc71;
}

a[class].startle {
  background: #e74c3c;
}

Я сделал проще, просто выборочно присваивал !important важным атрибутам.

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 h2 {
  margin: 0 !important;
  padding: 10px !important;

  font-weight: normal;
  font-size: 12px;
  color: #ffffff;
  background: #34495e !important;
  border-radius: 4px;
  
}

.fact {
  padding: 10px;
  background: white !important;
  
}

.fact:nth-child(odd) {
  background: #ecf0f1 !important;
  
}

.fact::title {
  content: "";
  display: table;
  clear: both;
}

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

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

.albums {
  margin-top: 5px;
  clear: both;
}

.albums img, #miska {
  width: 64px; /* было 64 px */
  height: 64px; /* было 64 px */
  float: left;
  margin-right: 5px;
}

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

.button {
  display: block;
  height: 30px !important;
  margin: 5px 0 !important;

  line-height: 30px;
  text-align: center !important;
  color: #ffffff ;
  border-radius: 4px;
  text-decoration: none;
}

.stroke {
  background: #3498db !important;
}

.feed {
  background: #2ecc71 !important;
}

.startle {
  background: #e74c3c !important;
}

Мой вариант, 100%

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,
h2{
  margin: 0  !important;
  padding: 10px  !important;

  font-weight: normal;
  font-size: 12px;
  color: #ffffff;
  background: #34495e;
  border-radius: 4px;
}

.profile .info .fact {
  padding: 10px;
  background: white;
}

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

.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;
}

.albums img,
#miska {
  width: 64px;
  height: 64px;
  float: left;
  margin-right: 5px;
}

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

.profile .button {
  display: block;
  height: 30px;
  margin: 5px 0;

  line-height: 30px;
  text-align: center;
  color: #ffffff;
  border-radius: 4px;
  text-decoration: none;
}

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

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

.profile .startle {
  background: #e74c3c;
}

А можете подсказать, почему у меня без !important не работает?:frowning:

.albums img, #mishka {
margin-top: 5px;
width: 64px;
height: 64px;
float: left;
margin-right: 5px !important;
}

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

Быть может дело в #mishka?
Исправьте мишку на миску, может поможет)))

А говорили, что в CSS не прокатят костыли. Вот же они!
Если есть люди, стоящие на страже выразительности кода, прошу мне помочь.

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 !important;
margin-left: 10px !important;
}

.profile .info #info-title
{
margin: 0 !important;
padding: 2px !important; //Вот здесь приноровил костыль
padding-left: 10px !important; //И здесь
text-align: left;
font-weight: normal;
font-size: 12px;
color: #ffffff;
background: #34495e;
border-radius: 4px;

}

.profile h2 { // класс-дублер, т.к. не нашел комбинированного
//применения с классом выше
margin: 0 !important;
padding: 10px !important;
text-align: left;
font-weight: normal;
font-size: 12px;
color: #ffffff;
background: #34495e;
border-radius: 4px;
}

.profile .info .fact {
padding: 10px;
background: white;
}

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

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

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

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

.profile .albums {
margin-top: 5px !important;
}

.albums img {
width: 64px !important;
height: 64px !important;
float: left !important;
margin-right: 5px !important;
}

.profile .albums img:last-child {
margin-right: 0 !important;
}

#info-title, .profile .button {
display: block;
height: 30px;
margin: 5px 0;

line-height: 30px;
text-align: center;
color: #ffffff;
border-radius: 4px;
text-decoration: none;
}

#info-title, .profile .button.stroke {
background: #3498db;
}

#info-title, .profile .button.feed {
background: #2ecc71;
}

#info-title, .profile .button.startle {
background: #e74c3c;
}

в реальной работе ,такое нельзя делать

1 лайк