autoprefixer(自動加前綴)
根據 browsers
(瀏覽器)選項移除不必要的 CSS 前綴。請注意,預設情況下,它不會新增新的前綴到 CSS 檔案中。
範例
輸入
.box {
-moz-border-radius: 10px;
border-radius: 10px;
display: flex;
}
輸出
.box {
border-radius: 10px;
display: flex;
}
根據 browsers
(瀏覽器)選項移除不必要的 CSS 前綴。請注意,預設情況下,它不會新增新的前綴到 CSS 檔案中。
.box {
-moz-border-radius: 10px;
border-radius: 10px;
display: flex;
}
.box {
border-radius: 10px;
display: flex;
}