设置颜色的方式: 关键字:red|blue 第一种:十六进制:#ffffff 第二种:rgb(红,绿,蓝): rgb(ffff00) rgba(红,绿,蓝,透明度) 第三种:hsl(色相,饱和度,明度) hsla(色相,饱和度,明度,透明度) h:hue:色相,颜色的色系 s:saturation:... ...
分类:
其他好文 时间:
2018-01-13 11:21:15
阅读次数:
191
保持sass条理性和可读性的最基本的三个方法:嵌套、导入和注释。 一般情况下,你反复声明一个变量,只有最后一处声明有效且它会覆盖前边的值。 $link-color: blue; $link-color: red; a { color: $link-color; } 最终编译成为红色 --------... ...
分类:
Web程序 时间:
2018-01-12 01:47:51
阅读次数:
220
package com.blue.common.util; import java.text.ParseException;import java.text.SimpleDateFormat;import java.util.Calendar;import java.util.Date;import ...
分类:
编程语言 时间:
2018-01-05 12:28:35
阅读次数:
479
package com.blue.common.util;import java.util.ArrayList;import java.util.HashSet;import java.util.List;import java.util.Set;import java.util.regex.Mat ...
分类:
编程语言 时间:
2018-01-05 12:25:57
阅读次数:
347
项目地址:vue-simple-template共三个角色:adan barbara carrie 密码全是:123456 adan 拥有 最高权限A 他可以看到 red , yellow 和 blue 页面(共三个页面) barbara 拥有 权限B 他可以看到 red 和 yellow 页面 c ...
分类:
其他好文 时间:
2017-12-29 15:11:22
阅读次数:
206
background一共有8个对应的属性: 1、background-color:颜色值 用于设定背景的颜色 有3种定义颜色的形式, 1, 颜色关键字表示法,可直接用英文单词来定义,比如red,blue,green等。 2, 16进制表示法,用#000000到#ffffff区间内的16进制数来表示。 ...
分类:
其他好文 时间:
2017-12-24 22:57:46
阅读次数:
193
题目: Given an array with n objects colored red, white or blue, sort them so that objects of the same color are adjacent, with the colors in the order r ...
分类:
编程语言 时间:
2017-12-21 11:50:59
阅读次数:
202
Given an array with n objects colored red, white or blue, sort them so that objects of the same color are adjacent, with the colors in the order red, ...
分类:
其他好文 时间:
2017-12-11 23:05:54
阅读次数:
209
``` \documentclass[12pt,UTF8,titlepage]{article} \usepackage[colorlinks,linkcolor=blue]{hyperref} \usepackage{fontspec} \usepackage{xunicode} \usepack ...
分类:
其他好文 时间:
2017-12-10 18:55:49
阅读次数:
152
在最近的项目中遇到的问题:v-html编辑的富文本,无法在样式表中修改样式; 比如上面的代码,生成的页面中,.descBox里面的P标签的样式并不是"color: blue"; 这是为什么呢?原因很简单:如果标签存在template中,那么在<style></style>标签中是可以修改其样式的; ...
分类:
Web程序 时间:
2017-12-09 18:17:10
阅读次数:
314