less初步接觸

2021-09-20 05:44:22 字數 1186 閱讀 8686

以前一直聽說less/sass,今天我開始學習less

@font-color:#333333;//字型顏色

@font-size:1.6rem;//預設字型大小

@background-colore:#eeeeee;//背景色為#eeeeee

@overflowhidden:hidden;//

@left:left;//左

@right:right;//右

@center:center;//中

@top1:1rem;//上邊1rem

@bottom1:1rem;//下邊1rem

@left1:1rem;//左邊1rem

@right1:1rem;//右邊1rem

/*******

*計算rem

********/

@media screen and (max-width: 1366px)

body

}@media (min-width: 1367px) and (max-width:1600px )

body

}@media screen and (min-width:1601px )

body

}/**

計算邊框(類似於js中的函式)

**/.borderleft(@style:solid,@width:0.1rem,@color:#efefef)

.borderright(@style:solid,@width:0.1rem,@color:#efefef)

.bordertop(@style:solid,@width:0.1rem,@color:#efefef)

.borderbottom(@style:solid,@width:0.1rem,@color:#efefef)

/**計算寬度或高度

**/.width(@width:100%)

.height(@height:2rem)

body

font-size: @font-size;

color: @font-color;

width: 80vw;

margin-left: 10vw;

}.aligncenter

.alignleft

.alignright

.test

}

VML初步接觸

什麼是vml?vml vector markup language 是乙個最初由microsoft開發的xml詞表,現在也只有ie5.0以上版本對vml提供支援。使用vml可以在ie中繪製向量圖形,所以有人認為vml就是在ie中實現了畫筆的功能。下面介紹一下vml的優點 基於xml標準 xml是公認...

glsl初步接觸

在看計算機系的同學的 時,我還不知道glsl這種東西。我還以為opengl繪製就是使用glbegin和glend。我還深深地納悶 opengl這貨畫東西完全不給力,是怎麼做到跟directx相比的?然後我看到了 裡的gluseprogram,看到了程式裡完全沒有出現glbegin這種語句。後來我才知...

初步接觸ubuntu

1 檔案部分helloworld 建立檔案 sudo vi aa.txt 由於許可權問題所以加上管理員許可權sudo 然後進入編輯介面 寫入helloworld 按esc退出 輸入 wq 寫入write並退出quit 檢視檔案 修改檔案許可權 此處還是要用sudo chmod 今天把學習到的先記錄到...