Vector's Blog


  • 首页

  • 归档

  • 标签

css

发表于 2016-12-08   |     |   阅读次数

CSS

选中文字样式

1
2
3
4
::selection{
background-color: green;
color: #fff;
}

垂直居中 (兼容IE6)

1
2
3
4
5
6
7
8
9
10
11
12
13
.box{
width: 200px;
height: 300px;
border: 1px solid #ccc;
position: fixed;
left: 50%;
top: 50%;
margin-left: -100px;
margin-top: -150px;
_position: absoulte;
_left: expression(eval(document.documentElement.clientWidth/2+document.document.documentElement.scrollLeft));
_top: expression(eval(document.documentElement.clientHeight/2+document.document.documentElement.scrollTop));
}
1…78
林某亮

林某亮

满地都是六便士
他却抬头看见了月亮

22 日志
3 标签
GitHub Weibo
© 2018 林某亮
由 Hexo 强力驱动
主题 - NexT.Pisces