CSS til SCSS konverter

Input data
bfotool loadding
Output data
bfotool loadding

CSS til SCSS konverter enkleste

Dette gratis onlineværktøj lader dig konvertere en CSS-fil til en SCSS-fil. Indsæt blot din CSS i formularen nedenfor, og den vil øjeblikkeligt blive konverteret til SCSS. Ingen grund til at downloade eller installere software. Gratis

Sådan konverteres CSS til SCSS?

Trin 1: Vælg dit input. Indtast data.
Trin 2: Vælg outputindstillinger (valgfrit) Outputindstillinger.
Trin 3: Generer output.

CSS til SCSS konverter eksempler

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 til SCSS hjælper med at konvertere CSS-stilformat til SCSS-stilformat. Det er meget enkel og nem måde at transformere og dele CSS til SCSS-data.