很多同学将顶部菜单固定,使用postion:fixed,然后使用margin:0 auto进行居中,发现margin:0 auto并不起作用。通常,我们要让某元素居中,会这样做:#element{margin:0 auto;} 如果还想让此元素位置固定呢?一般我们会添加position:fixed....
分类:
其他好文 时间:
2014-07-18 20:26:40
阅读次数:
193
今天2个笔记: 一、IE6浏览器下固定定位的实现; 二、IE6、IE7浏览器的hasLayout与普通浏览器(IE7+、Chrome、FirFox等)的BFC一、IE6浏览器下固定定位的实现: IE6浏览器下position:fixed固定定位测试 ...
分类:
其他好文 时间:
2014-07-18 16:03:41
阅读次数:
241
一、将图例Legend放于图表右侧1、设置chart的marginRight属性值:chart: { marginRight: 120}2、设置legend图例属性值如下legend: { align: 'right', //水平方向位置 verticalAlign: '...
分类:
其他好文 时间:
2014-07-18 15:39:23
阅读次数:
556
Filter 属性介绍:设置或检索对象所应用的滤镜或滤镜集合。此属性仅作用于有布局的对象,如块对象。内联要素要使用该属性,必须先设定对象的 height 或 width 属性,或者设定 position 属性为 absolute,或者设定 display 属性为 block。请参阅对象的 hasLa...
分类:
Web程序 时间:
2014-07-18 08:30:30
阅读次数:
321
1 2014-06-11 15:19:17.167 ***[930:707] *** Terminating app due to uncaught exception 'CALayerInvalidGeometry', reason: 'CALayer position contains NaN....
分类:
移动开发 时间:
2014-07-17 22:12:30
阅读次数:
340
相信初接触到CALayer的人都会遇到以下几个问题:为什么修改anchorPoint会移动layer的位置?CALayer的position点是哪一点呢?anchorPoint与position有什么关系?我也迷惑过,找过网上的教程,大部分都是复制粘贴的,有些是翻译的文章但很有问题,看得似懂非懂,还...
分类:
其他好文 时间:
2014-07-17 17:38:44
阅读次数:
292
html:
我趣旅行网-美剧迷
Pisode
css:
html,body{
height:100%;
margin:0;
padding:0;
}
.wrapper{
position:relative;
margin: 0 auto;
max-width: 500px;
min-...
分类:
移动开发 时间:
2014-07-17 17:20:56
阅读次数:
262
希望的效果如图:网上找了各纯css的做了下修改:代码如下:<!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Strict//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<style>
.logo1{
width:150px;
height:60px;
float:left
}
a.alt{
position:relative;
backgr..
分类:
其他好文 时间:
2014-07-17 10:55:57
阅读次数:
231
价格
对a链接包含的span图标进行样式更改。
.icon-down-single-arr{
background-position: -67px -974px;
}
.icon-down-single-arr-li li:hover .icon-down-single-arr{
background-position: -81px -974px;...
分类:
Web程序 时间:
2014-07-17 10:32:35
阅读次数:
241
1、复用行布局(用已经完全消失的布局对象去替代即将出现的那个布局对象)在自定义MyAdapter(继承BaseAdapter)适配器时,需重写getVIew(intposition,ViewconvertView,ViewGroupparent)方法,其中的converView方法会保存那个已经完全消失的布局对象,因此我们用convertView来..
分类:
其他好文 时间:
2014-07-17 09:16:42
阅读次数:
248