码迷,mamicode.com
首页 >  
搜索关键字:display    ( 13858个结果
Flexgrid中的sortable设为false的时候abbr属性也不存在的原因及解决办法
当对表格某一列进行如下设置的时候{ display: 'ID', name: 'ORDER_ID', width: 40, sortable: false, align: 'left'}会发现该列将没有abbr属性解决该问题的方法是1.打开flexgrid.js2.找到...
分类:其他好文   时间:2014-09-09 16:01:18    阅读次数:805
使用Configuration Manager配置报表服务
1.登陆SQLServer服务器,打开ReportingServices配置管理器2.点击服务账户,配置服务运行账户为“Localsystem”3.点击Web服务URL,确认设置无误4.点击数据库,确认数据库已经被创建5.点击报表管理器URL,确认URL已经被创建以及能够被正常访问6.登陆ConfigurationManager服务器,..
分类:其他好文   时间:2014-09-09 13:42:59    阅读次数:160
pygame 初记
import traceback import pygame from pygame.locals import * pygame.display.init() sizes = { "screen" : [ 640, 480 ] } colors = { "screen" : ( 255, 255, 255 ) } screen = pygame.display.set_m...
分类:其他好文   时间:2014-09-09 12:36:08    阅读次数:229
css水平居中和垂直居中
水平居中:内联元素:text-align:center;相对于父级居中显示块级元素:margin:0 auto;但是需要同时width,否则无法看到效果多个块级元素居中:在此想要探讨一下display:inline-block;和display:flex;方法1:在父级上设置text-align:c...
分类:Web程序   时间:2014-09-09 10:52:48    阅读次数:260
lvs + lamp的配置步骤
1,nfs服务器为web服务器提供统一的php程序,共享文目录为/webdata,配置文件(/etc/exports)设定如下。/webdata172.16.2.10(rw,no_root_squash)172.16.2.15(rw,no_root_squash)修改完配置文件启动nfs服务#servicenfsstart上传discuz文件到/webdata下,2,mysql为两台web服务器授..
分类:其他好文   时间:2014-09-08 11:02:37    阅读次数:580
Web Pages - Efficient Paging Without The WebGrid
Web Pages - Efficient Paging Without The WebGrid If you want to display your data over a number of pages using WebMatrix Beta1, you have two options. ...
分类:Web程序   时间:2014-09-07 23:44:45    阅读次数:397
几行css3代码实现超炫加载动画
之前为大家分享了css3实现的加载动画。今天为大家带来一款只需几行代码就可以实现超炫的动画加载特效。我们一起看下效果图: 在线预览源码下载实现代码:极简的html代码: css3代码:body { background: black; display: -webkit-box; ...
分类:Web程序   时间:2014-09-07 23:43:45    阅读次数:302
ZigZag Conversion
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 ...
分类:其他好文   时间:2014-09-07 21:07:35    阅读次数:247
浮动:图解两栏布局
图片文字的两栏布局有多种实现方式,基本都要靠浮动实现,但滥用浮动会破换布局的适应性。1.左右浮动图片左浮动,右边div右浮动.inner {overflow:hidden; width=600px}.inner_face {display: block;float: left;}.inner_rig...
分类:其他好文   时间:2014-09-07 14:41:15    阅读次数:167
CSUOJ 1336 Interesting Calculator 优先队列
Description There is an interesting calculator. It has 3 rows of buttons.   Row 1: button 0, 1, 2, 3, ..., 9. Pressing each button appends that digit to the end of the display. Row 2: button +0,...
分类:其他好文   时间:2014-09-06 12:31:03    阅读次数:338
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!