CSS сокращенные формы

Сообщение об ошибке

  • Notice: Trying to access array offset on value of type int в функции element_children() (строка 6595 в файле /home/u1000/domains/bighameleon.com/includes/common.inc).
  • Notice: Trying to access array offset on value of type int в функции element_children() (строка 6595 в файле /home/u1000/domains/bighameleon.com/includes/common.inc).
  • Notice: Trying to access array offset on value of type int в функции element_children() (строка 6595 в файле /home/u1000/domains/bighameleon.com/includes/common.inc).
  • Deprecated function: implode(): Passing glue string after array is deprecated. Swap the parameters в функции drupal_get_feeds() (строка 394 в файле /home/u1000/domains/bighameleon.com/includes/common.inc).
  • Deprecated function: The each() function is deprecated. This message will be suppressed on further calls в функции menu_set_active_trail() (строка 2405 в файле /home/u1000/domains/bighameleon.com/includes/menu.inc).
Аватар пользователя Натали
Раздел: 

 

background-color: #bbb;

background-image: url(img/bg.png);

background-repeat: repeat-x;

background-attachment: fixed;

background-position: left center;

/* is the same */

background: #bbb url(img/bg.png) repeat-x fixed left center;

 

 

margin-top: 5px;

margin-right: 5px;

margin-bottom: 10px;

margin-left: 25px;

/* is the same */

margin: 5px 5px 10px 25px;     

 

 

font-style: normal;

font-variant: inherit;

font-weight: lighter;

font-size: 10px;

line-height: 20px;

font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;

/* is the same */

font: normal inherit lighter 10px/20px "Trebuchet MS", Arial, Helvetica, sans-serif;