Konverter CSS Kanggo SCSS

Input data
bfotool loadding
Output data
bfotool loadding

Konverter CSS menyang SCSS paling gampang

Alat online gratis iki ngidini sampeyan ngowahi file CSS dadi file SCSS. Cukup tempel CSS sampeyan ing formulir ing ngisor iki lan bakal langsung diowahi dadi SCSS Ora perlu ngundhuh utawa nginstal piranti lunak apa wae. Gratis

Carane Ngonversi CSS menyang SCSS?

Langkah 1: Pilih input sampeyan. Ketik Data.
Langkah 2: Pilih opsi output (opsional) Pilihan Output.
Langkah 3: Nggawe output.

Conto konverter CSS menyang SCSS

CSS

.feature-url {
    background: #f7f7f7;
    text-align: center;
}
.feature-url li {
    list-style: none;
    display: inline-block;
    margin: 2px;
    border: 1px solid #e9ebee;
    text-align: center;
}
.feature-url li a {
    padding: 5px;
    color: blue;
    display: block;
    min-width: 70px;
}
.feature-url li a i {
    font-size: 20px;
}
.feature-url li a:hover {
    text-decoration: none;
    background: #e9ebee;
    color: #222;
}
.feature-url li.active a {
    background: #e9ebee;
    color: #222;
}

SCSS

.feature-url {
	background: #f7f7f7;
	text-align: center;
	li {
		list-style: none;
		display: inline-block;
		margin: 2px;
		border: 1px solid #e9ebee;
		text-align: center;
		a {
			padding: 5px;
			color: blue;
			display: block;
			min-width: 70px;
			i {
				font-size: 20px;
			}
			&:hover {
				text-decoration: none;
				background: #e9ebee;
				color: #222;
			}
		}
		&.active a {
			background: #e9ebee;
			color: #222;
		}
	}
}
 
CSS menyang SCSS mbantu ngowahi format gaya CSS dadi format gaya SCSS. Iku cara sing gampang banget lan gampang kanggo ngowahi lan nuduhake CSS menyang data SCSS.