← Комьюнити

Как сделать фоновый цвет?

student_z25FVHkx1 ответов

Как сделать фоновый цвет

1 ответов

Вот так:

<div style="width: 200px; height: 200px; background-color: red"></div>

или так:

<div class="color"></div>

и в css-стилях:

.color {
    width: 200px;
    height: 200px;
    background-color: red;
}
student_m97_nM0x1