css常用样式汇总

来源:互联网 发布:个体工商户域名备案 编辑:程序博客网 时间:2024/06/07 00:55

1、在html中去掉超链接的下划线

a:link,a:visited{ text-decoration:none;  /*超链接无下划线*/}a:hover{ text-decoration:underline;  /*鼠标放上去有下划线*/}
2、DIV的高度固定,当超出固定高度时,出现自动滚动条
.contentDiv{height:80px;line-height:80px;overflow:auto;overflow-x:hidden;}

3、获取当前页面的高度并给div设定高度
var height=parent.document.body.clientHeight;var frameDiv=document.getElementById("frameDiv"); frameDiv.style.height=height-200; 



0 0