1 text-overflow: -o-ellipsis-lastline;overflow: hidden;text-overflow: ellipsis;display: -webkit-box;-webkit-line-clamp: 2;-webkit-box-orient: vertical...
分类:
Web程序 时间:
2014-08-13 21:52:17
阅读次数:
231
1整体架构2中央日志服务器配置2.1配置时钟同步2.1.1方式一中央日志服务器和Tomcat节点均向同一个时钟源(例如:pool.ntp.org)进行对时即可。说明:本小节下面命令均以root用户执行,并且在中央日志服务器和Tomcat节点均要执行。首先,需要关闭ntpd服务:servicentpdstopchkcon..
分类:
其他好文 时间:
2014-08-13 19:27:18
阅读次数:
345
1、几个汉字后面跟一串英文 换行解决方法:word-break:break-all;word-wrap:break-word;display:block;2、ul/ol li在ie6下 会出现空隙 用浮动切记要给li加宽度解决方法:li vertical-align:top3、定位ie6下如果不显示...
分类:
其他好文 时间:
2014-08-13 18:21:47
阅读次数:
239
1. 伪类 :after 1. 清楚浮动div:after{ overflow:hidden; } 2. 制作三角形div:after{ content:''; display:block; width:0; border-top:8px solid #000; border-left:8p...
分类:
移动开发 时间:
2014-08-13 12:56:26
阅读次数:
234
1. Display Display特性可以为模型属性设置友好的”显示名称“或者”显示顺序“等等。2.ScaffoldCollumn ScaffoldCollumn特性可以隐藏HTML辅助方法渲染的一些属性3.DisplayFormat DisplayFormat特性可以用来处理属性的各种格式...
分类:
其他好文 时间:
2014-08-12 16:23:14
阅读次数:
148
题目:
The string "PAYPALISHIRING" is written in a zigzag pattern on a given number of rows like this: (you may want to display this pattern in a fixed font for better legibility)
P A H N
A P L S I I G
Y I R
And then read line by line: "PAHNAPLSIIG...
分类:
其他好文 时间:
2014-08-12 00:47:43
阅读次数:
196
Implement HashSet to store ‘n’ records of students ( Name, Percentage). Write a menu driven program to :1. Add student2. Display details of all studen...
分类:
其他好文 时间:
2014-08-11 21:03:22
阅读次数:
220
最近学QT,对信号槽机制感到有点新鲜:QObject::connect(slider, SIGNAL(valueChanged(int)), lcd, SLOT(display(int)));自己总结其原理,就是一句话:把两个对象的函数相关(往往是设置同一个值),而不用考虑两个对象之间的关系。缺点是...
分类:
其他好文 时间:
2014-08-11 20:46:52
阅读次数:
1061
text-align:center在父容器里水平居中 inline 文字,或 inline 元素vertical-align:middle垂直居中 inline 文字,inline 元素,配合display:table,display:table-cell,有奇效。line-height与 heig...
分类:
Web程序 时间:
2014-08-11 20:31:22
阅读次数:
351
#include
#include
#include
GLfloat step=0.0,s=0.1;
void CALLBACK display();
void CALLBACK display()
{
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
glMatrixMode(GL_PROJECTIO...
分类:
其他好文 时间:
2014-08-11 17:50:02
阅读次数:
183