M
M
Maxim Tyulpakov2015-07-30 09:52:13
css
Maxim Tyulpakov, 2015-07-30 09:52:13

display:flex; - how to register its properties for cross-browser compatibility?

It is written on the Internet that flexes are supported in many browsers when using
-webkit- , but I can’t figure out where to register this webkit, for which properties and how?

Answer the question

In order to leave comments, you need to log in

4 answer(s)
D
desuvin, 2015-07-30
@MaXComp

You don’t need to think about such things at all, use an autoprefixer

A
Appp Zooo, 2015-07-30
@ikeagold

Sometimes for tests I use the excellent online utility pleeease.io , but in general - gulp-autoprefixer .

R
Rad1calDreamer, 2015-07-30
@Rad1calDreamer

@mixin flexbox() {
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display:flex;
}

R
Radmir, 2015-07-30
@RadmirZ

I type in brackets - a great thing, you can also install the autoprefixer plugin there, which itself (!) Will append all prefixes for (old crap) old browsers when saving.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question