
css
liuwei_blog
这个作者很懒,什么都没留下…
展开
-
css实现背景图拉伸
制作页面时,有时需要在表格内插入背景图,我们可以使用CSS进行控制,代码:style="background-image:url(./images/counter_bg.jpg);background-repeat: no-repeat;background-position: right bottom;"其中,./images/counter_bg.jpg为显示图片路径。如果现在需要实现背景图随转载 2009-10-18 01:27:00 · 623 阅读 · 1 评论 -
如何去掉图片热点链接或超链接的虚线框?
方法一:在页面中加入下面CSS代码即可a {blr:expression(this.onFocus=this.blur())}area {blr:expression(this.onFocus=this.blur())}方法二:加上: onfocus= "this.blur() "如: onfocus= "this.blur转载 2009-10-29 18:30:00 · 2841 阅读 · 3 评论