Impossible_without_errors
@Impossible_without_errors

Что значат -o- -moz- -webkit- перед display: flex;?

Скопипастил код, но не ничего не понял. Что это за штуки перед display: flex;?
spoiler
.d-flex {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}

  • Вопрос задан
  • 247 просмотров
Решения вопроса 1
sim3x
@sim3x
https://developer.mozilla.org/en-US/docs/Glossary/...

Browser vendors sometimes add prefixes to experimental or nonstandard CSS properties and JavaScript APIs, so developers can experiment with new ideas while—in theory—preventing their experiments from being relied upon and then breaking web developers' code during the standardization process. Developers should wait to include the unprefixed property until browser behavior is standardized.

Browser vendors are working to stop using vendor prefixes for experimental features. Web developers have been using them on production
Ответ написан
Пригласить эксперта
Ваш ответ на вопрос

Войдите, чтобы написать ответ

Похожие вопросы