fixed真的是一个很好的属性。特别是做弹层的时候。可惜的是“国内主流浏览器”IE6大大不支持。
一般的我们都会通过CSS中的表达式来解决这个问题。
.fixed {
position:absolute;
left:expression(eval(document.documentElement.scrollLeft));
top:expression(eval(document.doc...
分类:
其他好文 时间:
2014-07-22 23:03:15
阅读次数:
318
[ 问题: ]
Given a sorted array and a target value, return the index if the target is found. If not, return the index where it would be if it were
inserted in order. You may assume no duplicates in th...
分类:
其他好文 时间:
2014-07-22 23:01:15
阅读次数:
270
EditorGUI.ProgressBar 进度条static
functionProgressBar(position:Rect,value: float,text: string) :
voidParameters参数totalPositionRectangle on the screen to...
分类:
其他好文 时间:
2014-05-10 01:28:36
阅读次数:
440
1 div{ 2 position: relative; 3 } 4 em ,span{ 5
border-style:solid dashed dashed dashed; 6 border-color:transparent; 7...
分类:
Web程序 时间:
2014-05-09 12:40:06
阅读次数:
295
一、说点原则阐述:浏览器在获得服务器发来的HTML文档的时候,会首先根据文档构建一个DOM树,然后根据DOM元素的样式计算规划DOM树,这期间浏览器会根据
:a.是否绝对定位划分布局空间产生定位层,b.是否浮动产生静态层/浮动层,(定位层凌驾于浮动层和静态层之上,且和二者没有关系)最后才会根据对它进...
分类:
其他好文 时间:
2014-05-09 10:58:42
阅读次数:
257
背景
项目要求网站首页放Views生成的区块,并且要求有更多链接。
Views生成的区块默认的更多链接只能选在列表上方和下方
下图是默认在上方的样式图:
为了美观,我将更多链接上移了若干个像素:
.more-link {
position: absolute;
top: 10px;
left: 390px;
}
效果图:
问题
然而,当我在这个区块外面再套一...
分类:
Web程序 时间:
2014-05-06 15:35:27
阅读次数:
454
1. ListView需要设置adapter,它的item是通过adapter的方法getView(int position, View convertView, ViewGroup parent)获得的。
2. ListView中只有第一屏的item需要新建,它的引用会被存在RecycleBin对象内,在拖动时后面的item实际上是重从了之前创建的item。3. 根据上述,ListView在需...
分类:
其他好文 时间:
2014-05-04 09:50:38
阅读次数:
345
今天不在状态,五一快到了,俺就特想玩了。好了,天色已晚,闲话不多说,看下用javaScript
实现的图片自动轮换效果,先看图片
下面是具体的代码,还是比较简单的。
越狱的囚徒
.content{
border:3px solid red;
padding:3px;
width:500px;
height:245px;
position:relative;
}
...
分类:
Web程序 时间:
2014-04-30 22:24:38
阅读次数:
358
好久不写CSS代码 感觉忘的差不多了,代码就是要多敲才行的。就行武林中的武者一样,每天都要勤加练习才可。
正好写写博客,就当复习复习。
position 主要是用来 元素的定位方式
static : 无特殊定位,对象遵循HTML定位规则
absolute : 将对象从文档流中拖出,使用left,right,top,bottom等属性进行绝对定位。而其层叠通过z-index属性定义。此...
分类:
Web程序 时间:
2014-04-29 13:45:20
阅读次数:
354
希望能帮到需要的人:http://www.see-design.com.tw/i/css_position.html
1. position:static
元素的 position 屬性默認值為:static,即該元素出現在文檔的常規位置,不會重新定位。
通常此屬性值可以不設置,除非是要覆蓋之前的定義。
#div-1 {
position:static;
}...
分类:
Web程序 时间:
2014-04-29 13:14:22
阅读次数:
309