Answer the question
In order to leave comments, you need to log in
How to remove unnecessary code in CSS when writing in SASS?
I write in SASS and when you write in SASS justify-content: space-between;
you get this in CSS:-
webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
column-gap: 30px;
, you get-webkit-column-gap: 30px;
column-gap: 30px;
Answer the question
In order to leave comments, you need to log in
it's called - css property prefixes. and your sass is smarter than you and does everything right.
read https://itchief.ru/lessons/html-and-css/css-browse...
and google on this topic what they are for
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question