css specify
by Евгений
HTML
<div id=div class=div></div>
CSS
div {
height: 20px;
}
#div {
background-color: red !important;
}
.div {
background-color: blue !important;
}
by Евгений
<div id=div class=div></div>
div {
height: 20px;
}
#div {
background-color: red !important;
}
.div {
background-color: blue !important;
}