-webkit-transform: ;
-moz-transform: ;
-o-transform: ;
-ms-transform: ;
transform
-webkit-animation:
-moz-animation:
-ms-animation:
-o-animation:
animation:
-webkit-transition: all ;
-moz-transition: all ;
-o-transition: all ;
-ms-transition: all ;
transition: all ;
transition: transform 5s, opacity 5s, border-bottom 5s;
<div class="title title--color__red"></div>
<div class="title title--color__green"></div>
<div class="title title--color__black"></div>
// .title- глобальный класс. Можно задать общие стили для группы элементов, чтобы их не дублировать
.title {
text-align: center;
color: black;
font-size: 16px;
}
// собственные классы. Дополнительные (индивидуальные) стили
.title .title--color__red {
color: red;
}
.title .title--color__green {
color: green;
font-size: 14px; // Переопределили стиль глобального класса
}
.title .title--color__red {
color: blue;
text-decoration: underline;
}
<img src="images/1) header/shopping-cart-menu.png" id=cart_icon height="15" width="18"/>
<img src="images/1) header/magnifying-glass-menu.png" id=glass_icon" height="18" width="18"/>
id=cart_icon height="15"
min-height: 40px
.hide {
opacity: 0;
}
$('table td').each(function() {
var text = $(this).text();
if (text.length == 0) {
$(this).html('<u class="hide">empty</u>');
}
});