1. 前端 需要提供 上一级的上一级 id <s:a action="department_list?parentId=%{#parent.parent.id}"><IMG SRC="${pageContext.request.contextPath}/style/blue/images/butto ...
分类:
其他好文 时间:
2017-08-25 01:21:28
阅读次数:
175
.border{border: 80px solid red;width: 200px;height: 200px;border-left: 80px solid blue;} ...
分类:
其他好文 时间:
2017-08-23 15:55:14
阅读次数:
110
vim貌似支持的颜色很有限.white black yellow cyan magenta blue grey green red,大多数颜色前面都可以加light 或者 dark 来进行修饰但是VIM开启256色的配置后,支持的配色.其实VIM支持的颜色不仅这些: 1、到https://githu ...
分类:
系统相关 时间:
2017-08-20 15:54:29
阅读次数:
244
一、CSS常用文本属性 【css中的颜色表示方式】 1、直接使用颜色的单词表示:red、green、blue 2、使用颜色的十六进制表示:#ff0000,#00ff00; 六位数,两两分组,分别表示红、绿、蓝 3、使用RGB(0~255,0~255,0~255);三位数,分别表示红绿蓝的配比。 4、 ...
分类:
Web程序 时间:
2017-08-20 14:06:43
阅读次数:
239
<html> <head> </head> <style> #div1{width:400px;height:400px;background-color:red;} </style> <script> function blue(){ div1=document.getElementById('d ...
分类:
Web程序 时间:
2017-08-19 20:13:51
阅读次数:
187
指针数组 && 数组指针 char *a[5]; //定义一个指针数组, 数组的元素都是char *指针类型。初始化也能够在里面存放字符或字符串。a的类型是char *[5] //若char *a[5]={"red","white","blue","dark","green"}; //a在这里的类型 ...
分类:
编程语言 时间:
2017-08-19 17:15:44
阅读次数:
254
2943:小白鼠排队 2943:小白鼠排队 总时间限制: 1000ms 内存限制: 65536kB描述 N只小白鼠(1 < N < 100),每只鼠头上戴着一顶有颜色的帽子。现在称出每只白鼠的重量,要求按照白鼠重量从大到小的顺序输出它们头上帽子的颜色。帽子的颜色用“red”,“blue”等字符串来表 ...
分类:
其他好文 时间:
2017-08-17 12:57:46
阅读次数:
162
<style> .jindu { width: 400px; height: 30px; background:blue; position: relative; } .zhi{ height: 30px; width: 30%; background: red; float: left; } .s ...
分类:
其他好文 时间:
2017-08-16 23:18:01
阅读次数:
165
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>Title</title> <style> .blue{ background: #ccf; color:#339; } .pink{ background: #a ...
分类:
Web程序 时间:
2017-08-16 19:22:00
阅读次数:
234
jQuery 遍历 - eq() 方法 jQuery 遍历参考手册 jQuery 遍历参考手册 实例 通过为 index 为 2 的 div 添加适当的类,将其变为蓝色: $("body").find("div").eq(2).addClass("blue"); 亲自试一试 实例 通过为 index ...
分类:
Web程序 时间:
2017-08-16 17:20:54
阅读次数:
169