http://blog.csdn.net/lzz313/article/details/7554736-------------个人经历-------myeclipse 10.6 的jsp页面引用的程序在myeclipse 8.6中页面运行500错误找到Java EE 5 Libraries 的找到...
分类:
编程语言 时间:
2015-03-17 17:42:50
阅读次数:
158
仿wordpress管理后台设计的后台管理框架本Markdown编辑器使用[StackEdit][6]修改而来,用它写博客,将会带来全新的体验哦:
html的padding-top来实现整体下移,然后top使用position:fixed定位到顶部。
leftbg的position:absolute来实现左侧背景定位。
左右分栏是利用float特性,让右侧可以自动适应。
<!DOCTYPE html...
分类:
其他好文 时间:
2015-03-17 12:31:10
阅读次数:
220
1837. Isenbaev's Number
Time limit: 0.5 second
Memory limit: 64 MB
Vladislav Isenbaev is a two-time champion of Ural, vice champion of TopCoder Open 2009, and absolute champion of ACM ICP...
分类:
其他好文 时间:
2015-03-17 08:11:15
阅读次数:
257
1.absolute绝对定位的非绝对定位用法byzhangxinxufromhttp://www.zhangxinxu.com本文地址:http://www.zhangxinxu.com/wordpress/?p=608position为absolute的元素如果没有设置left, top等值与le...
分类:
其他好文 时间:
2015-03-16 12:39:02
阅读次数:
192
position1、fixed:定位。浮动。(需要搭配left, right)2、absolute:相对于最近的父元素,不考虑周围的布局。(可使用z-index占据位置,则同一位置层叠)3、relative:对象不可层叠,相对于自己。(relative加上top,例如top: -50px,意思是上移...
分类:
Web程序 时间:
2015-03-14 16:50:20
阅读次数:
153
varbox=document.getElementById("box");
box.style.position="absolute";
box.style.width="160px";
box.style.height="120px";
box.style.background="red";
box.style.left="0px";...
分类:
其他好文 时间:
2015-03-13 16:40:26
阅读次数:
111
position:relative和position:absolute都可以改变元素在文档中的位置,都能激活元素的left、top、right、bottom和z-index属性。(默认这些属性未激活,设置了也无效) 设置position:relative和position:absolute都会让元....
分类:
其他好文 时间:
2015-03-13 12:29:12
阅读次数:
128
CSS代码:#mask {background: black; opacity: 0.3; filter: alpha(opacity=30); position: absolute; left: 0; top: 0; display: none;}#box { width: 300px; heig...
分类:
Web程序 时间:
2015-03-13 12:11:33
阅读次数:
152
positionposition:static| relative | absolute | fixed |center|page|sticky默认值:staticstatic:对象遵循常规流。top,right,bottom,left等属性不会被应用。relative:对象遵循常规流,并且参照自身...
分类:
Web程序 时间:
2015-03-13 10:35:26
阅读次数:
148
JQuery实现图片轮播
*{margin: 0;padding: 0;}
#box{width:600px;height:240px;position: relative;}
#pic{width:600px;height:240px;position: relative;top:0px;left:0px;}
img{position: absolute;}/* 将三个图片层叠在一起 */
#...
分类:
Web程序 时间:
2015-03-11 12:59:39
阅读次数:
125