Определите, какой цвет будет у элемента с классом title в каждом из двух примеров CSS кода и объясните почему.
Первый пример:
.parent { position: relative; height: 100vh; }
.box {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
#card .title {
color: red;
}
.card .title {
color: blue;
}
.title {
color: green;
}
Второй пример:
.parent { position: relative; height: 100vh; }
.box {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.title {
color: red;
}
.title {
color: blue;
}
.title {
color: green;
}