摘要: 1 import os 2 3 def auto_less_to_css(file_dir): 4 # 获取当前目录下所有的css文件路径 5 all_whole_path_files = [] 6 for root, dirs, files in os.walk(file_dir): 7 for 阅读全文
posted @ 2019-03-24 20:54 monstermr 阅读(1009) 评论(0) 推荐(0) 编辑
摘要: 常用的的css属性为background-color 还有一个属性可以实现渐进式背景色 background-image: linear-gradient(to bottom, #315481, #918e82 100%); 最顶级的position:absolute是相对于body的 该属性脱离文 阅读全文
posted @ 2019-03-24 20:34 monstermr 阅读(521) 评论(0) 推荐(0) 编辑