Всем привет! Подскажите плиз, как изменить стиль одной ячейки таблицы (чтобы фон одной ячейки таблицы был например не белым, а красным), если стили таблиц уже заданы в css
Layout.css:
table {
width: 100%;
max-width: 100%;
margin-bottom: 1.5em;
border-collapse: collapse;
border-spacing: 0;
background-color: none;
font-size: 1em
}
table th,table td {
padding: 8px;
vertical-align: top;
border: 1px solid #ddd;
line-height: 1.5em;
text-align: left;
}
table th {
font-weight: bold;
border: 0;
}
table thead th {
vertical-align: bottom;
}
table tr:first-child th,table thead:first-child tr:first-child th,table thead:first-child tr:first-child td
{
border-top: 0;
}
table tbody+tbody {
border-top: 2px solid #8c9bab;
}
table tbody tr td,table tbody tr th {
-webkit-transition: background-color 0.25s 0 linear;
-moz-transition: background-color 0.25s 0 linear;
-ms-transition: background-color 0.25s 0 linear;
-o-transition: background-color 0.25s 0 linear;
transition: background-color 0.25s 0 linear;
}