阿拉米斯

Go home or stand up, it's your fucking choice. Do you still remember the reason why you are here?!
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2012年6月5日

摘要: 1.div的垂直居中问题vertical-align:middle; 将行距增加到和整个DIV一样高 line-height:200px; 然后插入文字,就垂直居中了。缺点是要控制内容不要换行 2. margin加倍的问题 设置为float的div在ie下设置的margin会加倍。这是一个ie6都存在的bug。解决方案是在这个div里面加上display:inline; 例如: <#div id=”imfloat”> 相应的css为 #imfloat{ float:left; margin:5px;/*IE下理解为10px*/ display:inline;/*IE下再理解为5px*/} 阅读全文

posted @ 2012-06-05 11:12 阿拉米斯 阅读(281) 评论(0) 推荐(0)

摘要: <script type="text/javascript"> function goUrl(x) { window.location.href=x; } </script> <a href="javascript:;" onclick="javascript:goUrl('http://www.baidu.com');">跳转1</a> <a href="javascript:void(0);" onclick="javascript 阅读全文

posted @ 2012-06-05 10:56 阿拉米斯 阅读(267) 评论(0) 推荐(0)

摘要: ValidatorEnable(document.getElementById('<%=rfvTime.ClientID %>'),false);这个方法可以设置验证控件是否可用 阅读全文

posted @ 2012-06-05 10:50 阿拉米斯 阅读(164) 评论(0) 推荐(0)