CSS سے کم کنورٹر

Input data
bfotool loadding
Output data
bfotool loadding

سی ایس ایس سے کم کنورٹر آسان ترین

یہ مفت آن لائن ٹول آپ کو سی ایس ایس فائل کو کم فائل میں تبدیل کرنے دیتا ہے۔ بس نیچے دیے گئے فارم میں اپنا سی ایس ایس پیسٹ کریں اور یہ فوری طور پر کم میں تبدیل ہو جائے گا کسی بھی سافٹ ویئر کو ڈاؤن لوڈ یا انسٹال کرنے کی ضرورت نہیں ہے۔ مفت

سی ایس ایس کو کم میں کیسے تبدیل کیا جائے؟

مرحلہ 1: اپنا ان پٹ منتخب کریں۔ ڈیٹا درج کریں۔
مرحلہ 2: آؤٹ پٹ آپشنز (اختیاری) آؤٹ پٹ آپشنز کا انتخاب کریں۔
مرحلہ 3: آؤٹ پٹ تیار کریں۔

سی ایس ایس سے کم کنورٹر کی مثالیں۔

سی ایس ایس

.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;
}

کم

@color1: #f7f7f7;
@color2: #e9ebee;
@color3: #222222;

.feature-url {
	background: @color1;
	text-align: center;
	li {
		list-style: none;
		display: inline-block;
		margin: 2px;
		border: 1px solid @color2;
		text-align: center;
		a {
			padding: 5px;
			color: blue;
			display: block;
			min-width: 70px;
			i {
				font-size: 20px;
			}
			&:hover {
				text-decoration: none;
				background: @color2;
				color: @color3;
			}
		}
		&.active a {
			background: @color2;
			color: @color3;
		}
	}
}
 
CSS to LESS سی ایس ایس اسٹائل فارمیٹ کو کم اسٹائل فارمیٹ میں تبدیل کرنے میں مدد کرتا ہے۔ CSS کو کم ڈیٹا میں تبدیل کرنے اور شیئر کرنے کا یہ بہت آسان اور آسان طریقہ ہے۔