css的一些应用技巧

1.怎样去掉图片链接点击后,图片周围的虚线?字串6
<a href="#" onFocus="this.blur()"><img src="logo.jpg" border=0>

2在页面中如何加入不是满铺的背景图片,拉动页面时背景图不动
<STYLE>
body
{background-image:url(logo.gif); background-repeat:no-repeat;

background-position:center;background-attachment: fixed}
</STYLE>

原文地址:https://www.cnblogs.com/aaa6818162/p/1597187.html