то есть был виден фон под кнопкой
чтобы ссылка(вид как у кнопки)
Как сделать круглый border
border с градиентом
?course_id=1&course_category_id=1
В каком же случае наследование будет предпочтительнее трейтам?
а несуществующие не пропускал
Uncaught TypeError: Cannot read property 'setAttribute' of null
at (index):852
полезную литературу по СЕО
не хочу по неопытности прочитать непроверенный кал
In CSS 2.1, the effect of 'min-height' and 'max-height' on tables, inline tables, table cells, table rows, and row groups is undefined.
The height of a 'table-row' element's box is calculated once the user agent has all the cells in the row available: it is the maximum of the row's computed 'height', the computed 'height' of each cell in the row, and the minimum height (MIN) required by the cells. A 'height' value of 'auto' for a 'table-row' means the row height used for layout is MIN. MIN depends on cell box heights and cell box alignment (much like the calculation of a line box height). CSS 2.1 does not define how the height of table cells and table rows is calculated when their height is specified using percentage values. CSS 2.1 does not define the meaning of 'height' on row groups.
In CSS 2.1, the height of a cell box is the minimum height required by the content. The table cell's 'height' property can influence the height of the row (see above), but it does not increase the height of the cell box.
$itemValues = array_values ( $data );
$valueString = '';
foreach($itemValues as $val) {
if($val === null){
$valueString .= "NULL,";
} else{
$valueString .= "'$val',";
}
}
$valueString = rtrim($valueString, ',');
$valueString = '(' . $valueString . ')';
$values = "\n" . $valueString;
if ($values != "") {
$data_string = "INSERT INTO `$tableName` (`$items`) VALUES" . $values . ";;;" . PHP_EOL;
if ($this->fp)
fwrite ( $this->fp, $data_string );
}
public static function parkingList() {
return [
1 => 'Парковка №1',
2 => 'Парковка №2';
];
}
public function getParkingName(){
$list = self::parkingList();
return (isset($this->transport_storage) and isset($list[$this->transport_storage->storage_id])) ? $list[$this->transport_storage->storage_id] : 'не заданно';
}
[
'header' => 'Стоянка',
'value' => 'parkingName'
]