CSS. Дан следующий html код
Выберите правильное оформление CSS

  • .section{ display: flex; justify-content: space-around; } k { width: 50px; height: 50px; border-radius: 50px; } m1{ background-color: green; } m2{ background-color: orange; } m3{ background-color: blue; }
  • section{ display: flex; justify-content: space-around; } .k { width: 50px; height: 50px; border-radius: 50px; background-color: green, orange, blue; }
  • section{ display: flex; justify-content: space-around; } .k { width: 50px; height: 50px; border-radius: 50px; } .m1 .m2 .m3{ background-color: green, orange, blue; }
  • section{ display: flex; justify-content: space-around; } .k { width: 50px; height: 50px; border-radius: 50px; } .m1{ background-color: green; } .m2{ background-color: orange; } .m3{ background-color: blue; }
Для просмотра статистики ответов нужно залогиниться.